如何为一个对象增加一个成员?
this.data.rwx=[]
this.data.rwx[0][‘rw’] = this.data._id//报错
或者
this.data.rwx=[]
this.data.rwx[0].rw= this.data._id//也报错
这里必须要加索引[0],因为要for循环赋值
this.data.rwx=[]
this.data.rwx[0][‘rw’] = this.data._id//报错
或者
this.data.rwx=[]
this.data.rwx[0].rw= this.data._id//也报错
这里必须要加索引[0],因为要for循环赋值