我想开始使用Angular的ui-router而不是ngRoute。最初,我的app配置看起来像
myApp.config(["$routeProvider",
function($routeProvider) {
$routeProvider
.when("/search", {
templateUrl: "partials/customerSearch.html"
})
.when("/home", {
templateUrl: "partials/home.html"
})
.when("/login", {
templateUrl: "partials/login.html",
controller: "LoginCtrl"
})
.otherwise({
redirectTo: "/home"
})
;
}
]);
我换出了库,并更改了配置。我知道我可以仍然使用$routeProvider
,但这似乎是一种传统的解决方法。
myApp.config(["$urlRouterProvider", "$stateProvider",
function($urlRouterProvider, $stateProvider) {
$urlRouterProvider
.when("/search", "partials/customerSearch.html")
.when("/home", "partials/home.html")
.when("/login", "partials/login.html")
.otherwise("/home")
;
$stateProvider
.state({
name: "customer",
url: "/customer/:username",
templateUrl: "partials/customer.html"
})
.state({
parent: "customer",
name: "details",
url: "/details",
templateUrl: "partials/customerDetails.html"
})
;
}
]);
这给了我似乎表明$digest
陷入循环的错误。我怀疑.otherwise("/home")
规则。我是否正确指定了handler
,就好像它们是模板网址一样?
如果我评论.when()
,则除了"/customer/:username"
之外没有任何作用。我是否必须为每条路线定义一个州?如果是这样,同时拥有$urlRouterProvider
和$stateProvider
有什么意义?问的不同,每个人应该做什么?
答案 0 :(得分:13)
这是一个基本的例子,我前一段时间,在ui-router config中使用名称间隔的控制器,&一个嵌套路线(第二个标签):http://plnkr.co/edit/2DuSin?p=preview
template:
可以更改为templateUrl:
指向HTML文件。
var app = angular.module('plunker', ['ui.bootstrap', 'ui.bootstrap.tpls','ui.router']);
app.config(function($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise("/");
$stateProvider
.state('state1', {
url: "/",
template: 'Hello from the first Tab!',
controller: 'FirstCtrl',
data:{}
})
.state('state2', {
url: "/route2",
template: 'Hello from the 2nd Tab!<br>' +
'<a ui-sref="state2.list">Show List</a><div ui-view></div>',
controller: 'SecondCtrl',
data: {}
})
.state('state2.list', {
url: '/list',
template: '<h2>Nest list state</h2><ul><li ng-repeat="thing in things">{{thing}}</li></ul>',
controller: 'SecondCtrl',
data: {}
});
});
控制器:
app.controller('FirstCtrl', ['$scope', '$stateParams', '$state', function($scope,$stateParams,$state){
}]);
app.controller('SecondCtrl', ['$scope', '$stateParams', '$state', function($scope, $stateParams, $state){
$scope.things = ["A", "Set", "Of", "Things"];
}]);
答案 1 :(得分:0)
这应该适合你。否则函数是$ urlRouteProvider服务的一部分。如果遇到问题,请查看有关如何定义用作$ stateProvider.state()函数参数的对象的教程。在这里,我只专注于放置其他路线的位置。
myApp.config(['$stateProvider','$urlRouterProvider',
function($stateProvider, $urlRouterProvider) {
$stateProvider
.state({
name: 'customer',
url: '/customer/:username',
templateUrl: 'partials/customer.html',
controller: 'YourCtrl'
})
.state({
parent: 'customer',
name: 'details',
url: '/details',
templateUrl: '/partials/customerDetails.html',
controller: 'YourCtrl'
});
$urlRouteProvider.otherwise('home');
}
]);