gpt4 book ai didi

javascript - Backbone.js:如何查看附加到模型的所有数据?

转载 作者:行者123 更新时间:2023-11-30 17:42:10 24 4
gpt4 key购买 nike

在 Backbone.js 中工作,如何在控制台中查看模型上的所有可用数据?

我的意思是通过以下方式提供的所有内容的字典:

this.model.get("foo");

记录类似的东西:

{ "foo" : "bar" }

我想在控制台中查看所有可用属性。只是将 this.model 记录到控制台并没有显示出来。

最佳答案

使用返回 shallow clone of the model's attributes propertytoJSON() 方法:

toJSON: function(options) {
return _.clone(this.attributes);
}

然后您可以实例化您的模型以在获取时查看到控制台:

var model = new FooBar({id: 123});
model.fetch({
success: function() {
console.log(model.toJSON());
}
});

关于javascript - Backbone.js:如何查看附加到模型的所有数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20837472/

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