小程序
小游戏
企业微信
微信支付
扫描小程序码分享
只是用于毕业设计,能否开通使用扫普通链接二维码打开小程序功能点?如果不行有什么替代方法吗?在线等!!!
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
毕业设计这种少量场景可试试获取小程序二维码:
https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/qrcode-link/qr-code/createQRCode.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
不支持
以下是二维码生成的代码,主要问题是不知道怎么才能够跳转:
handleGenerate(code) { let that = this new QRCode('myCanvas', { text: './pages/table/table?id='+ code, width: 141, //canvas 画布的宽 height: 141, //canvas 画布的高 padding: 10, // 生成二维码四周自动留边宽度,不传入默认为0 correctLevel: QRCode.CorrectLevel.L, // 二维码可辨识度 colorDark: "red",//分别为两种交替颜色 colorLight: "white", callback: (res) => { //工具回调数据 wx.hideLoading() that.setData({ imagePath: res.path }) } }) },
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
毕业设计这种少量场景可试试获取小程序二维码:
https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/qrcode-link/qr-code/createQRCode.html
不支持
以下是二维码生成的代码,主要问题是不知道怎么才能够跳转:
handleGenerate(code) { let that = this new QRCode('myCanvas', { text: './pages/table/table?id='+ code, width: 141, //canvas 画布的宽 height: 141, //canvas 画布的高 padding: 10, // 生成二维码四周自动留边宽度,不传入默认为0 correctLevel: QRCode.CorrectLevel.L, // 二维码可辨识度 colorDark: "red",//分别为两种交替颜色 colorLight: "white", callback: (res) => { //工具回调数据 wx.hideLoading() that.setData({ imagePath: res.path }) } }) },