小程序本地測試沒有問題,蘋果正常,安卓無法發送請求?
小程序本地測試沒有問題,蘋果正常,安卓無法發送請求,https ssl證書正常。
- Page({
- data:{
- height:height,
- width:width,
- },
- onLoad:function(options){
- // 頁面初始化 options為頁面跳轉所帶來的參數
- wx.login({
- success: function (loginres) {
- code = loginres.code;
- wx.getUserInfo({
- withCredentials:true,
- success: function (getuserinfores) {
- //小程序判斷是否綁定用戶賬號
- 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,跳轉到首頁
- 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){
- // 未綁定用戶賬號
- 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(){
- // 頁面渲染完成
- },
- onShow:function(){
- // 頁面顯示
- },
- onHide:function(){
- // 頁面隱藏
- },
- onUnload:function(){
- // 頁面關閉
- }
- })
復制代碼