小程序
小游戏
企业微信
微信支付
扫描小程序码分享
xs max 请求数据无反应 删除 或者是使用开发者工具 或者使用体验码 均无法获取数据 开发者工具获取到的是以为开发者的user_id 返回数据超时
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
微信版本是?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
7.0.4
https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/wx.setEnableDebug.html调试下线上版本看下:
您好 我发现是我的小程序 首次进入 授权失败 但是不跳转到授权页 (打印以及showToast都会执行 )
授权页是注册过的 现在我的手机以及开发工具都有这种问题
完整代码
const Host = require('config').Host
const Api = require('config').Api
App({
data: {
},
onLaunch: function (e) {
var that = this
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
updateManager.onUpdateFailed(function () {
// 新版本下载失败
console.log("新版本下载失败,请重新打开或者删除小程序再进入")
var query = e.query;
console.log(query)
if (query.ioid) {
wx.setStorageSync('ioid', query.ioid)
if(query.p){
wx.setStorageSync('topage', query.p)
if(query.id){
wx.setStorageSync('to_id', query.id)
if (query.act_id) {
wx.setStorageSync('act_id', query.act_id)
var ioid = query.ioid ? query.ioid : "";
wx.login({
//console.log(res.code);
if (res.code) {
wx.request({
url: Api + '/Index/appid',
data: { code: res.code },
method: 'GET',
//console.log('success');
//console.log(res);
var sessionkey = res.data.session_key
wx.setStorageSync('sessionkey', sessionkey)
var openid = res.data.openid
wx.setStorageSync('openid', openid)
wx.getUserInfo({
lang: "zh_CN",
// console.log(res);
var encryptedData = res.encryptedData
var iv = res.iv
wx.setStorageSync('iv', iv)
var sessionkey = wx.getStorageSync('sessionkey')
var useradd = res.rawData
url: Api + '/User/getuserinfo', //录入信息
data: { encryptedData, iv, sessionkey, ioid },
var userid = res.data.data.id;
if (userid) {
wx.setStorageSync('userid', userid)
fail: function (res) {
console.log('fail');
// that.globalData.getUserInfoFail = true
// var fail = that.globalData.getUserInfoFail
// if (fail == true) {
wx.navigateTo({
url: '/pages/welcome/welcome'
wx.showToast({
title: '111',
console.log('fail2');
// }
}, fail: function (res) {
console.log('api fail');
globalData: {
userInfo: null,
getUserInfoFail: null,
之后我改用reLunch 可以 每次都能跳转 授权页了
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
微信版本是?
7.0.4
https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/wx.setEnableDebug.html调试下线上版本看下:
您好 我发现是我的小程序 首次进入 授权失败 但是不跳转到授权页 (打印以及showToast都会执行 )
授权页是注册过的 现在我的手机以及开发工具都有这种问题
完整代码
const Host = require('config').Host
const Api = require('config').Api
App({
data: {
},
onLaunch: function (e) {
var that = this
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新版本下载失败
console.log("新版本下载失败,请重新打开或者删除小程序再进入")
})
var query = e.query;
console.log(query)
if (query.ioid) {
wx.setStorageSync('ioid', query.ioid)
}
if(query.p){
wx.setStorageSync('topage', query.p)
}
if(query.id){
wx.setStorageSync('to_id', query.id)
}
if (query.act_id) {
wx.setStorageSync('act_id', query.act_id)
}
var ioid = query.ioid ? query.ioid : "";
wx.login({
success: function (res) {
//console.log(res.code);
if (res.code) {
wx.request({
url: Api + '/Index/appid',
data: { code: res.code },
method: 'GET',
success: function (res) {
//console.log('success');
//console.log(res);
var sessionkey = res.data.session_key
wx.setStorageSync('sessionkey', sessionkey)
var openid = res.data.openid
wx.setStorageSync('openid', openid)
wx.getUserInfo({
lang: "zh_CN",
success: function (res) {
// console.log(res);
var encryptedData = res.encryptedData
var iv = res.iv
wx.setStorageSync('iv', iv)
var sessionkey = wx.getStorageSync('sessionkey')
var useradd = res.rawData
wx.request({
url: Api + '/User/getuserinfo', //录入信息
data: { encryptedData, iv, sessionkey, ioid },
method: 'GET',
success: function (res) {
var userid = res.data.data.id;
if (userid) {
wx.setStorageSync('userid', userid)
}
}
})
},
fail: function (res) {
console.log('fail');
// that.globalData.getUserInfoFail = true
// var fail = that.globalData.getUserInfoFail
// if (fail == true) {
wx.navigateTo({
url: '/pages/welcome/welcome'
})
wx.showToast({
title: '111',
})
console.log('fail2');
// }
}
})
}, fail: function (res) {
console.log('api fail');
//console.log(res);
}
})
}
},
})
},
globalData: {
userInfo: null,
getUserInfoFail: null,
}
})
之后我改用reLunch 可以 每次都能跳转 授权页了
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)