我想对我的大部分应用程序使用角度模板,但对于某些页面,我想使用 aspnet mvc 控制器和在 ng-view 中显示的部分视图。
我一直在用路由尝试这样的事情:
when('/AccountX/Manage', { templateUrl: '/Account/Manage', controller: AccountController }).
when('/Account/Manage', { controller: AccountController }).
我还将帐户/管理表单更改为 ajax,但似乎在发布表单后,角度继续进行获取。
我正在使用没有 hashbangs 的 html5Mode。我的目标是始终拥有正常的网址。
有没有办法告诉角度避免某些路线?像 aspnet MVC 中的 IgnoreRoute?
对不起,如果我太含糊了。根据我自己的理解,我只想找到一个将标准 aspnet mvc 与 angular 混合的工作概念,无论它被认为是好是坏。