**uni app 打包成 Android 后无法请求服务器
在开发阶段使用 微信小程序开发者工具 是可以正常的请求服务器
打包后就不行,打包了两次
在 “夜神模拟机”,“腾讯手游助手” 均无法请求
运行 -> 运行到模拟器 也无法请求。这是为何,之前是蛮正常的**
// 封装请求
Vue.prototype.encryptionRequest = function(parameter) {
return new Promise((resolve, reject) => {
uni.request({
url: this.serverUrl + '/client/Entrance/transfer',
data: {
'parameter': JSON.stringify(parameter),
},
success: (requestRes) => {
resolve(requestRes.data);
},
fail: (e) => {
reject(e);
}
})
})
}
// 发起请求
var parameter = {
'method': 'client.UserInformation.userLogin',
'phone': this.phone,
'password': this.password
};
this.encryptionRequest(parameter).then((encryptionRequestRes) => {
})
iconKK
请问服务器证书问题是怎么解决的
2021-04-04 22:45
1***@qq.com
回复 iconKK: https证书
2021-06-28 16:06