Issues
while using AngularJS with MVC :
1.
Routing and Redirection
becomes difficult
: When we are trying to route, both the AngularJS and MVC are having routing
concept, So the application gets confused to which routing should follow. And
it stucked in the same page if we want to redirect to other page, actually in
angularjs we use $state.go() for routing between the pages, and in MVC we use
ActionResult to return View(), If we use MVC routing then we have to use
$window.location.href instead of $state.go() (here state does not maintain in
between controllers by using AngularJS with MVC.