伊呀程序
伊呀程序
  • 发布:2021-09-07 15:10
  • 更新:2021-09-07 15:10
  • 阅读:1894

后台接口,用postman测试正常,用uni.request返回403

分类:uni-app

同一个接口,同样的请求参数,同样的请求方式,用postman测试正常,用uni.request就返回403 - Forbidden,求教?


const requestTask = uni.request({  
    url: 'http://192.168.1.20/api', //仅为示例,并非真实接口地址。  
    method: 'POST',  
    header: {  
        'content-type': 'application/x-www-form-urlencoded'  
    },  
    data: {   
        object: JSON.stringify($this.formData)   
    },  
    success: function(res) {  
        console.log(res.data);  
    },  
    fail:function(err){  
        console.log('--------------',err);  
    }  
});
2021-09-07 15:10 负责人:无 分享
已邀请:

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