数组复制后setData疑问
dataList赋值给CA后,再修改dataList的一个值,再打印CA,CA跟着改变了。是什么原因。如何让CA不跟着dataList改变。
wxml代码如下:
<view wx:for="{{dataList}}" wx:key="{{unique}}" bindtap=“test”>{{item.val}}</view>
js代码如下:
var ca = “”;
Page({
data: {
dataList:[
{ name: ‘1’, val: ‘1’ },
{ name: ‘2’, val: ‘2’ },
],
},
onLoad: function (options) {
ca = this.data.dataList;
console.log(ca);
},
test:function(e){
ca = this.data.dataList;
console.log(ca)
var d = “dataList[0].name”;
this.setData({
[d]:3,
})
console.log(ca)
}
})