3 回答

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超4個(gè)贊
我認(rèn)為最簡(jiǎn)單的方法是稍后解析路由,例如,可以通過(guò)json詢(xún)問(wèn)路由。確認(rèn)我在配置階段通過(guò)$ provide在$ routeProvider之外建立了工廠,這樣我就可以在運(yùn)行階段甚至在控制器中繼續(xù)使用$ routeProvider對(duì)象。
'use strict';
angular.module('myapp', []).config(function($provide, $routeProvider) {
$provide.factory('$routeProvider', function () {
return $routeProvider;
});
}).run(function($routeProvider, $http) {
$routeProvider.when('/', {
templateUrl: 'views/main.html',
controller: 'MainCtrl'
}).otherwise({
redirectTo: '/'
});
$http.get('/dynamic-routes.json').success(function(data) {
$routeProvider.when('/', {
templateUrl: 'views/main.html',
controller: 'MainCtrl'
});
// you might need to call $route.reload() if the route changed
$route.reload();
});
});
添加回答
舉報(bào)