共计 311 个字符,预计需要花费 1 分钟才能阅读完成。
问题详情:在向后端发送数据时,header 中的 cookie 和 Authorization 未向后端发送问题
解决方法:
wx.request({
url: '',
method: '',
data: { },
header: {'cookie': wx.getStorageSync("cookies"),
'Authorization': wx.getStorageSync("Authorization")
},
success (res) {console.log(res.data)
}
})
在 header 中直接调用 wx.getStorageSync(“key”) 方法取值即可
在 header 里不能直接取 data 里的值,这样会无法取到值,进而导致数据没发送问题
正文完