1 模板语法不能读取属性
cant read …
错误原因:错误赋值给data中的数据
2 异步请求调用的 写法
1在then中进行赋值
2 在生命周期上套入async 赋值语句await
created() {
let userInfo = JSON.parse(sessionStorage.getItem("userInfo"));
// console.log(userInfo);
let uid = userInfo.id;
myBookStallApi(uid).then((res) => {
// this.stallBookList = res;
console.log(res);
if(res.data==null){
this.$message(res.msg);
}
});
}
// console.log("========")
async created{
let stallBookListRes = await myBookStallApi(uid);
// this.stallBookList = stallBookListRes;
console.log(stallBookListRes);
if (!stallBookListRes.data) {
this.$message(stallBookListRes.msg);
}
},}