There are two ways (AFAIK) to associate a controller with a view template/partial: the route specified in $routeProvider
and the ngController
directive. Especially (but not exclusively) for simple routing, is there any benefit/efficiency of one over the other?
My project currently uses the $routeProvider approach, but I've been given the task of nesting views. This seems simple enough with ngInclude, as long as the partial specifies its ngController.