主干视图实例化问题

发布于 2024-12-22 19:20:55 字数 298 浏览 0 评论 0原文

出乎意料的是,以下代码将打印 Test1 undefined 而不是 Test1 Test2

var MyView = Backbone.View.extend({
    initialize: function () {
        console.log(this.collection, this.test);
    }
});

new MyView({collection: "Test1", test: "Test2"});

我做错了什么?

Unexpectedly, the following code will print Test1 undefined instead of Test1 Test2.

var MyView = Backbone.View.extend({
    initialize: function () {
        console.log(this.collection, this.test);
    }
});

new MyView({collection: "Test1", test: "Test2"});

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯叶蝶 2024-12-29 19:20:55

只有 options 参数中的以下属性会合并为视图属性。

模型、集合、el、id、属性、className、tagName (查看源代码)

任何其他属性都会放置在视图的 options 属性上。

因此,要从初始化方法访问 test 属性,您可以按如下方式更新代码。

console.log(this.collection, this.options.test);

Only the following properties from the options argument get merged in as view properties.

model, collection, el, id, attributes, className, tagName (See the source code)

Any other property gets placed on the options property of the view.

So to access the test property from the initialize method, you can update your code as follows.

console.log(this.collection, this.options.test);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文