溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

小程序本地測(cè)試沒(méi)有問(wèn)題,蘋(píng)果正常,安卓無(wú)法發(fā)送請(qǐng)求?

發(fā)布時(shí)間:2020-08-07 20:57:21 來(lái)源:網(wǎng)絡(luò) 閱讀:950 作者:笙語(yǔ)亦涼 欄目:開(kāi)發(fā)技術(shù)

小程序本地測(cè)試沒(méi)有問(wèn)題,蘋(píng)果正常,安卓無(wú)法發(fā)送請(qǐng)求,https ssl證書(shū)正常。

  1. Page({

  2.   data:{

  3.     height:height,

  4.     width:width,

  5.   },

  6.   onLoad:function(options){

  7.     // 頁(yè)面初始化 options為頁(yè)面跳轉(zhuǎn)所帶來(lái)的參數(shù)

  8.         wx.login({

  9.           success: function (loginres) {

  10.             code = loginres.code;

  11.             wx.getUserInfo({

  12.               withCredentials:true,

  13.               success: function (getuserinfores) {

  14.                 //小程序判斷是否綁定用戶賬號(hào)

  15.                 var data = {

  16.                     encryptedData: getuserinfores.encryptedData,

  17.                     iv: getuserinfores.iv,

  18.                     code: code,

  19.                     agencyid: agencyid,

  20.                   }

  21.                        wx.request({

  22.                   url: apphost+'/applet/login',

  23.                   method:'POST',

  24.                   dataType:'json',

  25.                   data: data,

  26.                   header: {

  27.                     "Content-Type": "application/x-www-form-urlencoded"

  28.                   },

  29.                   success: function(res) {

  30.                     console.log(res)

  31.                     if(res.data.code == 200){

  32.                       // 登陸成功,返回用戶信息和token,跳轉(zhuǎn)到首頁(yè)

  33.                       getApp().globalData.wxuserinfo = res.data.data;

  34.                       app.globalData.interval = 0

  35.                       getdata()

  36.                       setTimeout(function(){

  37.                         wx.switchTab({

  38.                           url: '/pages/index/index'

  39.                         })

  40.                       },1000)

  41.                     }else if(res.data.code == 202){

  42.                       // 未綁定用戶賬號(hào)

  43.                       getApp().globalData.wxuserinfo = res.data.data;

  44.                       console.log(getApp().globalData.wxuserinfo)

  45.                       setTimeout(function(){

  46.                         wx.redirectTo({

  47.                           url: '/pages/login/index'

  48.                         })

  49.                       },1000)

  50.                      

  51.                     }else{

  52.                       console.log(res.data.msg)

  53.                     }

  54.                   },

  55.                   fail: function(res){

  56.                     console.log(res)

  57.                   }

  58.                 })

  59.               }

  60.             })

  61.           },

  62.           // fail: function(){

  63.           //   wx.showToast({

  64.           //     title: '登陸失敗',

  65.           //     icon: 'loadding',

  66.           //     duration: 2000

  67.           //   })

  68.           // }

  69.         })

  70.   },

  71.   onReady:function(){

  72.     // 頁(yè)面渲染完成

  73.   },

  74.   onShow:function(){

  75.     // 頁(yè)面顯示

  76.   },

  77.   onHide:function(){

  78.     // 頁(yè)面隱藏

  79.   },

  80.   onUnload:function(){

  81.     // 頁(yè)面關(guān)閉

  82.   }

  83. })

復(fù)制代碼


向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI