Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
什么是删除 Backbone 模型上的一堆属性的最佳方法。我考虑使用我想要保留或删除未使用的属性的属性创建一个新模型。对于这项任务有什么建议或更好的解决方案吗?
如果您想留在 Backbone 框架内,请使用 model.clear 和 .set() 之后的新属性。
否则你还不如直接覆盖 model.attributes 对象。
要删除属性,请使用 model.unset 方法。