Vue.js wrong variable gets updated
我有一个过滤方法(itemswithfilter)来过滤我的items对象并将结果写入itemsresult。
这是第一次工作,但似乎我的函数也自动更新了items对象。即使如此,我也只将结果写在itemsresult中。
有人知道我为什么以及如何预防它吗?该itemswithfilter方法只将结果返回到itemsresult
下面是fiddle链接:https://jsfiddle.net/afdz3ylt/1/
这是我的项目筛选功能
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | itemsWithFilter: function(filter) { var items = this.items.data; var result = {} console.log("Run itemsWithFilter") Object.keys(items).forEach(key => { const item = items[key] console.log(`filter: ${filter}: check item ${item.id} with category id: ${item.category.id}`) if (item.category.id == filter) { result[key] = item } }) this.itemsResult.data = result } |
可能是我理解错误的问题,但我认为您要问的是如何使用
如何将javascript对象复制到新变量而不是通过引用?
在javascript中深度克隆对象最有效的方法是什么?.