文章详情页
angular.js - SpringMVC+Angular如何设计路由,从多个页面不止index.html作为入口
浏览:137日期:2024-03-21 15:02:46
问题描述
SpringMVC+Angular做复杂的应用,一般都不是单页应用,如果想要继续使用Angularjs的话,应该如何设计路由呢?初次接触,感觉很迷惑,求指教。
问题解答
回答1:http://ued.taobao.org/blog/2014/04/xtpl/
回答2:可以使用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,这个功能强大一些。
回答3: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
标签:
HTML
排行榜
