this.setData is not a function
bindPickerChange:function(event){
var index = event.detail.value;
var selectedCount = this.data.countsArray[index];
this.setData({
productCount:selectedCount
});
},
我这里使用了picker组件,绑定的是上面的事件,在选择value后点确定就会出现 this.setData is not a function
有没有朋友帮忙看一下