小程序中获取当前data定义的值,用this.data.xxx
setData的时候要修改的值是不需要加this.data.xxx的,直接xxx,
一般直接修改data的值直接修改,修改数组中对象的值或者对象的属性值都要先转为字符串再加中括号,如果有变量可以用ES6的模版字符串反单引号或者字符串拼接一下。
Page({data: {currentValue:"aa",todoLists:[{detail:"",date:"",location:"",priority:"",remark:"",dateStatus:false,locationStatus:false,dateRepeat:false,completeStatus: false,currentInput:'',},{detail: "",date: "",location: "",priority: "",remark: "",dateStatus: false,locationStatus: false,dateRepeat: false,completeStatus: false,currentInput:'',}],aa:{a:1,b:2}},tickToComplete:function(e){//修改数组中对象的值let index = e.currentTarget.dataset.index;let completeStatus = `todoLists[${index}].completeStatus`;this.setData({[completeStatus]: !this.data.todoLists[index].completeStatus})//修改对象中的属性值this.setData({['aa.a']: 3})console.log(this.data.aa.a); //3//修改普通data值this.setData({currentValue: "bbb"})},
更多专业前端知识,请上 【猿2048】www.mk2048.com