将 Backbone 模型和集合保存到 JSON 字符串

发布于 2024-11-25 06:31:12 字数 356 浏览 2 评论 0原文

我在将 Backbone.Model 或 Backbone.Collection 对象保存到本地存储时遇到问题。 问题是,当它保存时,只有属性被保存,我不希望这样。 我实际上正在使用他们的示例 TODO 演示中提供的主干本地存储。

这是他们的保存函数

save: function() {          
    localStorage.setItem(this.name, JSON.stringify(this.data));
}

当我查看 JSON.stringify(this.data) 返回的内容时,我只看到模型或集合的属性被设置。有没有办法指定我要保存模型和集合所在的整个状态,而不仅仅是属性?

I'm having problem saving Backbone.Model or Backbone.Collection objects to local storage.
The problem is that when it saves, only the attributes gets saved and I do not want that.
I'm actually using the backbone-localstorage thats provided in their sample TODO demo.

This is their save function

save: function() {          
    localStorage.setItem(this.name, JSON.stringify(this.data));
}

When I look at what JSON.stringify(this.data) returns, I see only the models or the collection's attributes gets sets. Is there a way to specify that I want to save the whole state the model and collection is in, not just the attributes?

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

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

发布评论

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

评论(1

暮凉 2024-12-02 06:31:12

重写 Model.toJSON 或 Collection.toJSON 以返回您想要序列化的数据。

默认的 Model.toJSON 仅返回属性:

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

集合的 toJSON 使用模型的 toJSON:

toJSON : function() {
  return this.map(function(model){ return model.toJSON(); });
}

Override the Model.toJSON or Collection.toJSON to return the data you want serialized.

The default Model.toJSON just returns the attributes:

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

the Collection's toJSON utilizes the Model's toJSON:

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