gpt4 book ai didi

backbone.js - 需要帮助理解 Backbone 中嵌套 View 的基础知识

转载 作者:行者123 更新时间:2023-12-04 10:04:39 25 4
gpt4 key购买 nike

我一直在阅读有关backbone.js 中嵌套 View 的大量内容,并且我理解其中的很多内容,但仍然让我感到困惑的一件事是……

如果我的应用程序有一个 shell View ,其中包含在使用应用程序的过程中不会改变的 subview ,如页面导航、页脚等,我是否需要为每个路由渲染 shell 或者我是否需要做一些事情检查 View 以查看它是否已经存在?

在我看来,如果有人在应用程序中前进之前没有走“家”路线。

我在谷歌搜索中没有发现任何有用的信息,所以任何建议都值得赞赏。

谢谢!

最佳答案

由于您的“ shell ”或“布局” View 永远不会改变,您应该在应用程序启动时(在触发任何路由之前)渲染它,并渲染更多 View 进入 布局 View 。

假设您的布局看起来像这样:

<body>
<section id="layout">
<section id="header"></section>
<section id="container"></section>
<section id="footer"></section>
</section>
</body>

您的布局 View 可能如下所示:
var LayoutView = Backbone.View.extend({
el:"#layout",
render: function() {
this.$("#header").html((this.header = new HeaderView()).render().el);
this.$("#footer").html((this.footer = new FooterView()).render().el);
return this;
},

renderChild: function(view) {
if(this.child)
this.child.remove();
this.$("#container").html((this.child = view).render().el);
}
});

然后,您将在应用程序启动时设置布局:
var layout = new LayoutView().render();
var router = new AppRouter({layout:layout});
Backbone.history.start();

在您的路由器代码中:
var AppRouter = Backbone.Router.extend({
initialize: function(options) {
this.layout = options.layout;
},

home: function() {
this.layout.renderChild(new HomeView());
},

other: function() {
this.layout.renderChild(new OtherView());
}
});

有很多方法可以给这只特定的猫剥皮,但这是我通常处理它的方式。这为您提供了用于呈现“顶级” View 的单点控制( renderChild ),并确保前一个元素是 remove d 在渲染新的之前。如果您需要更改 View 的呈现方式,这也可能会派上用场。

关于backbone.js - 需要帮助理解 Backbone 中嵌套 View 的基础知识,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15278312/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com