小程序
小游戏
企业微信
微信支付
扫描小程序码分享
1.扫描二维码之后,在wx.scanCode回调里写入wx.showToast,苹果手机无显示,安卓手机正常
2.扫描二维码之后,获取信息,发起请求,然后跳转页面,但是第一次扫描二维码跳转不了
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
提供下代码片段排查下 https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.scanCode({
success: (r) => {
wx.hideLoading()
var obj = JSON.parse(r.result)
var idList = this.getBoxList.map(item => {
return item.toolId
})
if (!idList.includes(obj['ID'])) {
wx.showToast({
title: '',
icon: 'none',
duration: 1000
});
return
}
title: '到达跳转位置',
icon: "none",
var nowItem = encodeURIComponent(JSON.stringify(obj))
wx.navigateTo({
url: './toolScan?toolResult=' + nowItem,
fail(e) {
console.log(e)
title: '失败原因'+e,
},
success() {}
fail: (res) => {
title: res.msg || '扫描失败',
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
提供下代码片段排查下 https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
wx.scanCode({
success: (r) => {
wx.hideLoading()
var obj = JSON.parse(r.result)
var idList = this.getBoxList.map(item => {
return item.toolId
})
if (!idList.includes(obj['ID'])) {
wx.showToast({
title: '',
icon: 'none',
duration: 1000
});
return
}
wx.showToast({
title: '到达跳转位置',
icon: "none",
duration: 1000
});
var nowItem = encodeURIComponent(JSON.stringify(obj))
wx.navigateTo({
url: './toolScan?toolResult=' + nowItem,
fail(e) {
console.log(e)
wx.showToast({
title: '失败原因'+e,
icon: "none",
duration: 1000
});
},
success() {}
})
},
fail: (res) => {
wx.showToast({
title: res.msg || '扫描失败',
icon: "none",
duration: 1000
});
}
})