uni.showLoading({
title: '加载中'
});
uni.request({
url: url,//接口地址。
data: dd.data || {},
header: dd.header || {
'parasite-token-key': uni.getStorageSync("token")
},
method: dd.method || "POST",
dataType: dd.dataType || 'json',
responseType: dd.responseType || 'text',
success: function(res) {
uni.hideLoading();
},
fail: function(res) {
uni.hideLoading();
},
complete: function() {
}
})
在公众号里面访问的时候有的苹果手机和华为手机uni.showLoading一直没有关闭 查看后台日志发现request没有发送请求
9***@qq.com (作者)
最后查出来是设置header的时候用了单引号改成双引号就可以了
2020-09-04 11:39