这里setData与data有什么区别?为什么没有使用setData?
来源:12-1 图书组件
迷失的小麦
2020-04-23
onLoad: function (options) {
const hotList=bookModel.getHotList();
hotList.then(res => {
//console.log(res);
this.data.books=res;
});
},
写回答
1回答
-
setData是数据绑定,data就是直接赋值,没有数据绑定
012020-04-23
相似问题