I'm creating an application that uses CodeIgniter as backend and I want to use AngularJS for the frontend. My problem is that I can not understand how I will insert new modules (blocks of code) where each module of this must contain its own controler. In theory, I understand that my page will serve as a abstract
total route, and that for this route I will have several views
that my modules will be.
My question, basically, is based on how I'm going to do to manipulate pre-defined views within a abstract
view, for example:
//página inicial -> página abstrata
paginaInicial = {
views : [ navbar, leftMenu,content,footer]
}
Based on this context, in a number of cases I will probably have to change the information of the view content
and as far as I understand, I can only do this if I go to a new route.
Does anyone here know how I can manipulate views that are present within an abstract route? Including, removing ...