ifFollowed:function() {
var _this = this;
uni.request({
url: this.apiServer + '/follow/one',
method: 'POST',
header: { 'content-type': 'application/x-www-form-urlencoded' },
data: {
fromUId: uni.getStorageSync('login_key').userId,
toUId: 7
},
success: (res) => {
if(res.data.data!=null){
return false;
}else{
return true;
}
}
});
},
如代码所示。我想判断data的值然后返回到函数。这样应该是错的。百度说要异步。但是我不会,有大神帮忙改一下吗
0 个回复