14

我想开始使用 Angular 的 ui-router 而不是 ngRoute。最初,我的应用配置看起来像

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是否正确指定了 s,就好像它们是模板 URL 一样?

如果我注释掉.when()s,除了"/customer/:username". 我必须为每条路线定义一个状态吗?如果是这样,同时拥有$urlRouterProviderand有什么意义$stateProvider?不同地问,每个人应该做什么?

4

2 回答 2

13

这是我不久前制作的一个基本示例,在 ui-router 配置中使用名称空间控制器和一个嵌套路由(第二个选项卡):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"];
}]);
于 2014-02-22T04:01:36.893 回答
0

这应该适合你。else 函数是 $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');
}

]);

于 2015-02-17T21:18:40.403 回答