1

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

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

4

1 回答 1

3

如果您返回 Durandal 站点,请下载HTML samples.zip文件。解雇那个坏男孩,你会看到 ko 样本正在做你正在寻找的事情。

(来自 ko 示例文件夹的 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';
            });
        })
    };
});
于 2013-09-27T21:08:13.453 回答