美文网首页
uni-appd的uni.request请求头header传递数

uni-appd的uni.request请求头header传递数

作者: 浮若年华_7a56 | 来源:发表于2022-08-11 10:35 被阅读0次
var contentheader = 'application/json'
let userInfo = uni.getStorageSync('userInfo');
uni.request({
    url: baseUrl + url,
    // 请求接口地址
    data: data,
    // 传入请求参数
    method: method,
    // 配置请求类型
    header: {
        'content-type': contentheader,
        'accessToken':userInfo.accessToken // uni-app不支持设置cookie,并且uni-app设置withCredentials只支持h5端,app不支持,所以跟后台使用了accessToken传递给后台
          }
})

相关文章

网友评论

      本文标题:uni-appd的uni.request请求头header传递数

      本文链接:https://www.haomeiwen.com/subject/nbbzwrtx.html