- 请问 uniapp 是否支持 微信开发标签 <wx-open-launch-app>
[图片][图片] 本地运行项目 到 这个页面 会报上面的错误 测试线不会报错 但是 在真机 微信浏览器内 点击这个 打开app 没有反应 请问这是什么情况?
2020-06-05 - 为什么canvas生成图片全部变成黑色了?
- 需求的场景描述(希望解决的问题) 我这是弄在自定义组件里的 var context = null; // 使用 wx.createContext 获取绘图上下文 context var isButtonDown = false; var arrx = []; var arry = []; var arrz = []; let canvasw = 0; let canvash = 0; // 初始化 ready() { context = wx.createCanvasContext('canvas', this); context.beginPath(); context.setStrokeStyle('#000000'); context.setLineWidth(4); context.setLineCap('round'); context.setLineJoin('round'); }, context.draw(true, () => {wx.canvasToTempFilePath({ x: 15, y: 150, width: 150, height: 150, destWidth: 320, destHeight: 325, canvasId: 'canvas', success: function (res) { console.log(res.tempFilePath); wx.previewImage({ current: res.tempFilePath, // 当前显示图片的http链接 urls: [res.tempFilePath] // 需要预览的图片http链接列表 }) }, fail: function (err) { console.log(err) } }, this)}); 我就发了初始化 和 生成图片的 代码段 - 希望提供的能力
2018-08-19 - template 数据 方法 怎么引入到其他页面?
- 需求的场景描述(希望解决的问题) 要怎么引入模版 包括 数据 方法呢? - 希望提供的能力
2018-08-14 - 数据处理!
[图片] 想做一个这样的数据处理 要怎么实现呢? [图片] 能给一个思路吗? 朋友们!
2018-08-08 - 微信小程序swiper卡死怎么解决?
请附上代码谢谢
2018-08-06 - 为什么 wx.getUpdateManager() 线上没有反应?
[图片] 开发工具 测试 有反应 [图片] 但是今天我线上发布最新的 真机没有反应! 官方给个解释好吗?
2018-07-14 - image bindload 无法触发
图片加载的时候 不触发 [图片] [图片] 请问这是为什么? 为什么没有反应?
2018-07-10 - cover-view 设置背景无效?
用 background 设置无效是吗? background: rgb(255, 118, 76); 难道要用下面这个? background-color: rgb(255, 118, 76);
2018-07-05 - 微信小程序 蓝牙 特征值为什么只搜索出一条?
[图片] 只支持 indicate 其他 notify 、read、write 都是 false 这要怎么写入呢? 写入方法 一直没反应 也没给个失败的提示 请问 要怎么解决?[图片]
2018-06-25 - 微信小程序 蓝牙API 监听为什么会失败?
[图片] 是要选择哪一个 特征值 uuid 才可以 监听成功? 并且 可以写入! 这是相关代码 wx.notifyBLECharacteristicValueChange({ state: true, deviceId: deviceId, serviceId: serviceId_, // 我这里 选择第1个特征值的uuid 然后 可以写入 但是 不能监听 characteristicId: res.characteristics[1].uuid, success: function (res) { console.log('notify: ', res.errMsg) // 监听低功耗蓝牙设备的特征值变化 wx.onBLECharacteristicValueChange(function (res) { console.log('监听') console.log(`characteristic ${res.characteristicId} has changed, now is ${res.value}`) console.log(that.ab2hex(res.value)) }) }, fail: function (err) { console.log('监听失败') console.log(err) } })
2018-06-22