data() {
return {
classdata:""
}
}
created() {
this.getdata()
console.log(this.classdata)//这里打印是空的
},
methods: {
getdata: async function () {
let CLASS = {}
CLASS.token = this.user.token
CLASS.orgid = this.user.id
CLASS.class = this.workData.clsid
let err,res;
[err,res] = await uni.request({
method: 'POST',
url: this.Url+'/getclass',
data: CLASS
});
this.classdata = res.data
console.log(this.classdata)//这里确有内容
console.log(res);
}
}
1***@163.com
- 发布:2018-12-21 15:45
- 更新:2018-12-28 19:28
- 阅读:2513
怎么把接口请求回来的数据同步到data,我用的官方Promise写法。求大神指点。。。
分类:uni-app
t***@163.com
有没有具体小例子
2019-02-13 23:04