1.页面代码
推荐人({{userInfo.UserDetails.UserName}})
微信扫码,即可参与蜂蚂分享经济
规则
目前只支持扫码识别推荐好友
共享资源
可分享蜂蚂平台去中心化利润的0-50%奖励
2.生成带参数微信小程序二维码:
var parameters = {
scene: "pageurl=qrcode&userid=" +that.data.userInfo.AutoId,
page: "pages/index/index",
width: 430
}
wx.request({
url: getApp().globalData.api + '/api/WeChat/GetQrCodeImage',
data: JSON.stringify(parameters),
method: 'PUT',
responseType: 'arraybuffer',
success: function(res) {
console.log(res);
let data = wx.arrayBufferToBase64(res.data);
that.setData({
qrcodeUrl: 'data:image/jpeg;base64,' + data
})
}
})
}
});
3.获取二维码代码
var scene = decodeURIComponent (options.scene);
console.log("The from qrcode and share info is " + scene);
//var scene = "pageurl=qrcode&userid=4"
var url = scene.split("&")[0].split("=")[1]
var id = scene.split('&')[1].split("=")[1];
if (url == "qrcode") {
that.setData({
pageUrl: "store",
isLoad: true,
userId: id
});
}
微信小程序开发问题解答
微信小程序开发者回答:
已经解决此问题,能获取到我的二维码参数,就是一开始调试非常不方便,跑到正式版去了
//来自二维码和分享页面
if (options.scene) {
var scene = decodeURIComponent (options.scene);
console.log("The from qrcode and share info is " + scene);
//var scene = "pageurl=qrcode&userid=4"
var url = scene.split("&")[0].split("=")[1]
var id = scene.split('&')[1].split("=")[1];
if (url == "qrcode") {
that.setData({
pageUrl: "store",
isLoad: true,
userId: id
});
}
}
微信小程序开发者回答:
一样的问题,就是参数二维码用微信直接扫描测试效果必须在发布审核后才可以看到,因为只有正式板才能生效,这完全不符合开发逻辑。
微信小程序开发者回答:
自己模拟二维码参数传就是了
微信小程序开发者回答:
想要什么二维码,哪个页面的,都可以用草料授权一下自己生成。https://cli.im/mina/home 。测试扫码效果用这个:。如果你是扫码的:方形二维码,需要对得到的连接进行解析转码。圆形的微信小程序码的话:直接拿对应字段的值就行了,不用转码。
微信小程序开发者回答:
1、生成要在后端,微信小程序正式版里没法访问API地址
2、开发者工具有个二维码编译模式,你把生成的二维码截图下来,然后用二维码编译模式打开
微信小程序开发者回答:
在配置测试中设置
启动页面 就是接受二维码信息的界面
启动参数 是你在服务器写返回 scene 的格式模拟 一个二维码参数
进入场景 选择 1011:扫描二维码
这样可以模拟你扫码进来的效果
微信小程序开发者回答:
扫码默认就是进线上的,你要是想测试的话得在公众平台上配置测试的二维码,但是挺麻烦的
本文网址:http://www.91bianli.com/weixinxiaochengxu/15597.html