gpt4 book ai didi

javascript - 主干更新嵌套属性

转载 作者:行者123 更新时间:2023-11-30 16:24:23 25 4
gpt4 key购买 nike

我有一个表格,其中显示了一组大致如下所示的模型:

{
id: 1,
name: "Product",
category: {
id: 1,
name: "CategoryName"
},
{
id: 2,
name: "Another Product",
category: {
id: 1,
name: "CategoryName"
},
etc..

我可以从表中选择一个模型并在模态中对其属性进行编辑。在我完成编辑属性后,我调用保存、关闭模式并传递一个事件来刷新我的表。在我的 TableView 中,我收到一个事件并使用 update: true

调用 fetch
App.vent.on("refresh:products", function() {
return this.collection.fetch()({
update: true
});
});

然而,没有任何嵌套属性(在本例中为 category)在没有硬刷新的情况下得到更新。我该如何解决这个问题?谢谢!

最佳答案

尝试传递 reset:true 作为获取选项

App.vent.on("refresh:products", function() {
return this.collection.fetch()({
reset: true
});
});

这将阻止 Backbone 合并从服务器接收到的数据。

关于javascript - 主干更新嵌套属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34331555/

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