我正在实施注册服务,用户建议选择三个参数:建筑(沙龙)、服务和公司(类别)。我ui-router
用于AngularJS
这个任务。
我已经创建了六个嵌套在彼此状态中的原型,如下所示:
angular.module('ngApp', ['ngAnimate', 'ui.router'])
.config(function($stateProvider, $urlRouterProvider) {
$stateProvider
.state('form', {
url: '/form',
template: '<div ui-view></div>',
controller: 'dummyController'
})
.state('form.salonChoose' ,{
url:'/salChoice',
template: '<button ng-click="changeSalon()">salon 99</button>'
})
.state('form.salons', {
url: '/salons/:salonId',
template: '<div>{{model.salon}}</div>' +
'<div ui-view></div>',
controller: function($scope, $stateParams) {
$scope.model.salon = $stateParams.salonId;
location.href = '/#/form/salons/'+$scope.model.salon+'/serviceChoice';
}
})
.state('form.salons.serviceChoice', {
url:'/serviceChoice',
template: '<button ng-click="changeService()">service 99</button>'
})
.state('form.salons.services', {
url: '/services/:serviceId',
template: '<div>{{model.service}}</div>' +
'<div ui-view></div>',
controller: function($scope, $stateParams) {
$scope.model.service = $stateParams.serviceId;
location.href = '/#/form/salons/'+$scope.model.salon+'/services/'
+$scope.model.service+'/catChoice';
}
})
.state('form.salons.services.catChoice', {
url:'/catChoice',
template: '<button ng-click="changeCat()">cat 99</button>'
})
.state('form.salons.services.categories', {
url: '/categories/:catId',
template: '<div>{{model.cat}}</div>',
controller: function($scope, $stateParams) {
$scope.model.cat = $stateParams.catId;
}
});
$urlRouterProvider.otherwise('/form/salChoice');
这种方法在这样的实现中起作用。要传递的简单用例:使用自定义 url 运行应用程序:#/form/salons/1/services/2/categories/3
它应该处于 state form.salons.services.categories
。原型效果很好。
但是当我在我的生产应用程序中使用这种方法时,第一次更改后状态不会更改。不同之处在于,在生产中嵌套状态必须使用相同ui-view
而不是嵌套,我认为这就是为什么状态没有改变的原因。
在解析 url 时处理状态更改的正确方法是什么?