Angular JS中的嵌套视图

时间:2013-08-22 20:10:13

标签: javascript ajax angularjs

我正在尝试在另一个视图中更新视图的一部分。

但链接会覆盖外部ng-view

如何更新ng-view中的ng-view?

2 个答案:

答案 0 :(得分:4)

此库应完全符合您的需求:

http://angular-route-segment.com

演示网站:http://angular-route-segment.com/src/example/

使用它比使用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 :(得分:0)

你应该得到ui-router。我相信它是唯一允许您进行嵌套视图的模块。

源代码:https://github.com/angular-ui/ui-router

说明如何使用:https://github.com/angular-ui/ui-router/wiki