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传递给后台
}
})
网友评论