您好,登錄后才能下訂單哦!
小程序本地測(cè)試沒(méi)有問(wèn)題,蘋(píng)果正常,安卓無(wú)法發(fā)送請(qǐng)求,https ssl證書(shū)正常。
Page({
data:{
height:height,
width:width,
},
onLoad:function(options){
// 頁(yè)面初始化 options為頁(yè)面跳轉(zhuǎn)所帶來(lái)的參數(shù)
wx.login({
success: function (loginres) {
code = loginres.code;
wx.getUserInfo({
withCredentials:true,
success: function (getuserinfores) {
//小程序判斷是否綁定用戶賬號(hào)
var data = {
encryptedData: getuserinfores.encryptedData,
iv: getuserinfores.iv,
code: code,
agencyid: agencyid,
}
wx.request({
url: apphost+'/applet/login',
method:'POST',
dataType:'json',
data: data,
header: {
"Content-Type": "application/x-www-form-urlencoded"
},
success: function(res) {
console.log(res)
if(res.data.code == 200){
// 登陸成功,返回用戶信息和token,跳轉(zhuǎn)到首頁(yè)
getApp().globalData.wxuserinfo = res.data.data;
app.globalData.interval = 0
getdata()
setTimeout(function(){
wx.switchTab({
url: '/pages/index/index'
})
},1000)
}else if(res.data.code == 202){
// 未綁定用戶賬號(hào)
getApp().globalData.wxuserinfo = res.data.data;
console.log(getApp().globalData.wxuserinfo)
setTimeout(function(){
wx.redirectTo({
url: '/pages/login/index'
})
},1000)
}else{
console.log(res.data.msg)
}
},
fail: function(res){
console.log(res)
}
})
}
})
},
// fail: function(){
// wx.showToast({
// title: '登陸失敗',
// icon: 'loadding',
// duration: 2000
// })
// }
})
},
onReady:function(){
// 頁(yè)面渲染完成
},
onShow:function(){
// 頁(yè)面顯示
},
onHide:function(){
// 頁(yè)面隱藏
},
onUnload:function(){
// 頁(yè)面關(guān)閉
}
})
復(fù)制代碼
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。