//这种方法不会与页面实时刷新
this.data.demo = ''
//这样会实时刷新 但是有时候需要动态指定属性或者数组下标
this.setData({);
写法 不知道为什么 这么写就对了
let needAttr = 'commodityList['+index+']' ;
this.setData({
[needAttr] : list
});
//动态指定属性
let property = 'name'
this.setData({
[property ] : tisname
});