SpringMVC+Angular做複雜的應用,通常不是單頁應用,如果想要繼續使用Angularjs的話,應該如何設計路由呢?初次接觸,感覺很迷惑,求指教。
认证高级PHP讲师
http://ued.taobao.org/blog/2014/04/xtpl/
可以使用angularjs自己的路由模組,如下: angular.module('myApp',['ngRoute']).config('$routeProvider', function($routeProvider){ $routeProvider.when("url",{ templateUrl: '', controller: '' }).otherwise({ redirectTo : 'url' }) } ); 如果這不夠使的,可以學習一下ui-router:https://github.com/angular-ui/ui-router,這個功能強大一些。
ANGULAR SPA + JERSEY + SPRINGMVC 整合應用 這篇講的很清楚
http://www.liaozhida.net/angular/angular-spa-jersey-springmvc-%E6%95%B4%E5%90%88%E5%BA%94%E7%94%A8.html
http://ued.taobao.org/blog/2014/04/xtpl/
可以使用angularjs自己的路由模組,如下:
angular.module('myApp',['ngRoute']).config('$routeProvider',
function($routeProvider){
$routeProvider.when("url",{
templateUrl: '',
controller: ''
}).otherwise({
redirectTo : 'url'
})
}
);
如果這不夠使的,可以學習一下ui-router:https://github.com/angular-ui/ui-router,這個功能強大一些。
ANGULAR SPA + JERSEY + SPRINGMVC 整合應用 這篇講的很清楚
http://www.liaozhida.net/angular/angular-spa-jersey-springmvc-%E6%95%B4%E5%90%88%E5%BA%94%E7%94%A8.html