微信小程序-改变对象的某个属性

使用es6的动态属性的方法

data:{
  orderinfo: null,
},
bindTap(){
  const is_in_list = "orderinfo.info.is_in_list"
  this.setData({
    [is_in_list]: 1
  })
 }

你可能感兴趣的:(微信小程序-改变对象的某个属性)