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