Durandal嵌套视图组合

时间:2013-09-27 11:10:16

标签: javascript html navigation durandal composition

我们正在尝试使用Durandal JS构建SPA应用程序作为一个概念,我们有布局,其中有顶部导航面板和加载SPA内容的主容器。在其中一个视图中,我们左侧面板上有导航,只能更改同一视图的右侧面板。我知道你在Durandal 2.0中是儿童溃败,但我无法实现我的目标。单击顶部面板应该更改主容器(顶部有两个选项卡),但在第二个选项卡上,加载视图左侧有额外的子导航我无法弄清楚如何让Durandal只更改右侧面板相同的观点。我不是要求代码不是为了具体实现,而是要求关于如何实现这一目标的概念或理论指导。

我甚至尝试在durandal 2.0中使用区域,但这似乎与我想要得到的结果不同。

1 个答案:

答案 0 :(得分:3)

如果您返回Durandal网站,请下载HTML samples.zip文件。向那个坏孩子开火,你会看到ko样品正在你正在寻找的东西。

(来自ko samples文件夹的index.js文件的副本)

define(['plugins/router', 'knockout'], function(router, ko) {
    var childRouter = router.createChildRouter()
        .makeRelative({
            moduleId:'ko',
            fromParent:true
        }).map([
            { route: '',                moduleId: 'helloWorld/index',       title: 'Hello World',           type: 'intro' },
            { route: 'helloWorld',      moduleId: 'helloWorld/index',       title: 'Hello World',           type: 'intro',      nav: true},
            { route: 'clickCounter',    moduleId: 'clickCounter/index',     title: 'Click Counter',         type: 'intro',      nav: true},
            { route: 'simpleList',      moduleId: 'simpleList/index',       title: 'Simple List',           type: 'intro',      nav: true },
            { route: 'betterList',      moduleId: 'betterList/index',       title: 'Better List',           type: 'intro',      nav: true},
            { route: 'controlTypes',    moduleId: 'controlTypes/index',     title: 'Control Types',         type: 'intro',      nav: true },
            { route: 'collections',     moduleId: 'collections/index',      title: 'Collection',            type: 'intro' ,     nav: true },
            { route: 'pagedGrid',       moduleId: 'pagedGrid/index',        title: 'Paged Grid',            type: 'intro',      nav: true },
            { route: 'animatedTrans',   moduleId: 'animatedTrans/index',    title: 'Animated Transition',   type: 'intro',      nav: true },
            { route: 'contactsEditor',  moduleId: 'contactsEditor/index',   title: 'Contacts Editor',       type: 'detailed',   nav: true },
            { route: 'gridEditor',      moduleId: 'gridEditor/index',       title: 'Grid Editor',           type: 'detailed',   nav: true },
            { route: 'shoppingCart',    moduleId: 'shoppingCart/index',     title: 'Shopping Cart',         type: 'detailed',   nav: true },
            { route: 'twitterClient',   moduleId: 'twitterClient/index',    title: 'Twitter Client',        type: 'detailed',   nav: true}
        ]).buildNavigationModel();

    return {
        router: childRouter,
        introSamples: ko.computed(function() {
            return ko.utils.arrayFilter(childRouter.navigationModel(), function(route) {
                return route.type == 'intro';
            });
        }),
        detailedSamples: ko.computed(function() {
            return ko.utils.arrayFilter(childRouter.navigationModel(), function(route) {
                return route.type == 'detailed';
            });
        })
    };
});