小程序
小游戏
企业微信
微信支付
扫描小程序码分享
2年没有写小程序了,现在http接口请求会重定向到https吗? 那怎么在开发环境用开发环境接口呢?
我。 勾选了 不校验合法域名、web-view(业务域名)、TLS 版本以及 HTTPS 证书
开发环境用http 会自动重定向https
还是说我写错了,我记得以前是这样用的
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
不会自动重定向
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
function request(u, t, back, d, h) {
console.log(app.globalData.serviceUrl + u)
debugger;
wx.request({
url: app.globalData.serviceUrl + u,
data: d ? d : null,
method: t,
// header: {'content-type': 'application/x-www-form-urlencoded'},
header: h ? h : {
'content-type': 'application/x-www-form-urlencoded'
},
success: function(e) {
console.log(e)
back(e)
fail: function(e) {
wx.hideLoading();
back("fail")
complete: function() {
}
});
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
不会自动重定向
这边url【app.globalData.serviceUrl + u】 打印出来是 【http://xxx:8083/api/Login/wxLogin】
这样这个可以吗,还是说要更细点,图片是打印,和network里的数据请求
function request(u, t, back, d, h) {
console.log(app.globalData.serviceUrl + u)
debugger;
wx.request({
url: app.globalData.serviceUrl + u,
data: d ? d : null,
method: t,
// header: {'content-type': 'application/x-www-form-urlencoded'},
header: h ? h : {
'content-type': 'application/x-www-form-urlencoded'
},
success: function(e) {
console.log(e)
back(e)
},
fail: function(e) {
wx.hideLoading();
back("fail")
},
complete: function() {
}
});
}