sadas
sadas
  • 发布:2019-04-14 02:40
  • 更新:2019-04-14 02:40
  • 阅读:882

uni.requset的data怎么作为值返回到函数

分类:HBuilderX
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的值然后返回到函数。这样应该是错的。百度说要异步。但是我不会,有大神帮忙改一下吗

2019-04-14 02:40 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复