如何制作Angularjs嵌套路由?

时间:2012-10-08 21:58:32

标签: javascript url-routing angularjs

我是角色新手,我想知道angularjs是否支持像emberjs这样的嵌套路线我的意思是这样的路线:myappurl/#/company/:company_id/department/:department_id

3 个答案:

答案 0 :(得分:7)

值得一提的是除了ui-router之外还有另一个Angular库来完成这项任务。这个也有效:

http://angular-route-segment.com

使用比ui-router简单得多。示例路由配置如下所示:

$routeSegmentProvider.

when('/section1',          's1.home').
when('/section1/prefs',    's1.prefs').
when('/section1/:id',      's1.itemInfo.overview').
when('/section1/:id/edit', 's1.itemInfo.edit').
when('/section2',          's2').

segment('s1', {
    templateUrl: 'templates/section1.html',
    controller: MainCtrl}).

within().

    segment('home', {
        templateUrl: 'templates/section1/home.html'}).

    segment('itemInfo', {
        templateUrl: 'templates/section1/item.html',
        controller: Section1ItemCtrl,
        dependencies: ['id']}).

    within().

        segment('overview', {
            templateUrl: 'templates/section1/item/overview.html'}).

        segment('edit', {
             templateUrl: 'templates/section1/item/edit.html'}).

        up().

    segment('prefs', {
        templateUrl: 'templates/section1/prefs.html'}).

    up().

segment('s2', {
    templateUrl: 'templates/section2.html',
    controller: MainCtrl});

答案 1 :(得分:3)

根据文件中给出的例子:https://docs.angularjs.org/api/ngRoute/directive/ngView。是的,Angularjs支持它。

答案 2 :(得分:3)