[图片]
小程序直播有开通权限了,但是无法开通呢?[图片][图片][图片][图片][图片]
2020-05-21用 wx.canvasToTempFilePath 生成图片 设置好width height 没毛病的
canvas 生成图片,开发工具和真机调试没问题,体验版和发布版不行?需要一张300*300的正方形图片,依次执行 裁剪->压缩(canvas生成)->上传(腾讯云存储桶)。在开发工具和真机调试环境下,都没有问题。运行体验版或发布后的程序,上传到存储桶的图片就变成长方形。有人遇到过这个奇怪的问题吗。
2020-05-19在父元素加高度?设置overflow
Collapse 使用wx:for循环后不能开启手风琴模式?如题,wx:for后,面板必须全部展开,哪位大神有办法?
2020-05-19打开调试了?
已经配置好了request合法域名,为什么手机上预览还是无法获取API的信息呢?图灵机器人: API:http://www.tuling123.com/openapi/ 微信不给访问http的接口,所以我添了一个s,强制转为https://www.tuling123.com/openapi/,发现也是可以访问的,PC端通过验证了,但是手机预览还是无法获取信息,请问是哪里出问题了吗? [图片] [图片] [图片]
2020-05-19回调链接域名 是不是没有在微信后台配置? 或者你用的是本地的IP地址?回调链接只能是线上的才行
调用JS-SDK获取二维码登录始终提示redirect_uri 参数错误微信JS-SDK[图片]
2020-05-19调用后端提供的生成订单接口 获取统一订单prepay_id 及签名等 再去调用小程序原生的API wx.requestPayment 看Api需要的参数
前端的支付流程是怎么样的?本人是刚接触的新人 有点疑惑就是 小程序的支付流程是怎么样的 就是前端这个一个模块的支付流程 有没有大佬能帮助一下小弟 小弟感谢!!!
2020-05-13解决了吗 我华为手机调用拍照 小程序直接重启了、
小米手机拍照小程序异常退出拍照之后,点击完成返回到了相册页面,此时再选择刚拍的照片点完成,小程序异常退出
2019-11-29实现了吗? 我用的是普通的二维码
请问web-view组件里面,长按无法识别公众号二维码?请问web-view组件里面,使用wx.previewImage查看大图长按识别之后,未出现识别二维码之类的选项? 要实现的功能是能够识别公众号二维码,请问有没有曲线救国的方案。。跪求大神们指点
2019-11-25你解决了吗
wx.writeBLECharacteristicValue返回成功,打印机不打- 当前 Bug 的表现(可附上截图) [图片] 代码: //index.js //获取应用实例 const app = getApp() Page({ data: { userInfo: {}, hasUserInfo: false, canIUse: wx.canIUse('button.open-type.getUserInfo'), devices: [], deviceId: '', services: [], serviceId: '', characteristicId: '', characteristicIdNotify: '', characteristicIdRead: '', }, onLoad() { // wx.showModal({ // title: '提示', // content: '请检查手机蓝牙是否打开', // success: function (res) { // that.setData({ // isbluetoothready: false, // searchingstatus: false // }) // } // }) }, /** * @description 开启蓝牙适配器 */ openBlue() { let _this = this wx.openBluetoothAdapter({ success(res) { console.log('开启适配器:', res) // 搜索蓝牙设备 _this.discoverDevices() } }) }, closeBlue() { wx.closeBluetoothAdapter({ success(res) { console.log('关闭适配器: ', res) } }) }, /** * @description 搜索蓝牙设备 */ discoverDevices() { let _this = this wx.startBluetoothDevicesDiscovery({ success(res) { console.log('搜索完成', res) setTimeout(() => { _this.getDevices() setTimeout(() => { _this.foundDevices() }, 500) }, 500) } }) }, /** * @description 搜索新的蓝牙设备 */ foundDevices() { let _this = this wx.onBluetoothDeviceFound(function (devices) { console.log('检测到新设备:', devices) // 检测到新设备后,更新设备列表,供选择 _this.data.devices.push(devices.devices[0]) _this.setData({ devices: _this.data.devices }) }) }, /** * @description 获取可连接的蓝牙设备 */ getDevices() { let _this = this wx.getBluetoothDevices({ success: function (res) { if (res.devices[0]) { console.log('获取设备:', res) _this.setData({ devices: res.devices }) } } }) }, chooseDevice(e) { let _this = this // 储存 deviceId _this.data.deviceId = e.currentTarget.dataset.deviceid // 连接设备 _this.createConnect(_this.data.deviceId) // console.log('_this.data.deviceId: ',_this.data.deviceId) }, createConnect(deviceId) { let _this = this wx.createBLEConnection({ // 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接 deviceId, success(res) { // 连接成功 console.log('连接设备成功:', res) // 获取 serviceId _this.getServices(deviceId) // 监听连接状态 _this.onConnectionStatus() // 停止搜索 _this.stopDiscoverDevices() }, fail(err) { console.warn('err :', err); } }) }, onConnectionStatus() { wx.onBLEConnectionStateChange(function (res) { // 该方法回调中可以用于处理连接意外断开等异常情况 console.log(`设备 ${res.deviceId} 连接状态变化, 连接状态: ${res.connected}`) }) }, /** * @description 获取已连接的蓝牙设备 */ getConnectDevices(services) { wx.getConnectedBluetoothDevices({ services, success(res) { console.log('已连接的设备:' + JSON.stringify(res)) }, fail(err) { console.log('err: ', err.errMsg) } }) }, /** * @description 停止搜索蓝牙设备 */ stopDiscoverDevices() { wx.stopBluetoothDevicesDiscovery({ success(res) { console.log('成功链接设备,停止搜索。') } }) }, /** * @description 获得 services & serviceId */ getServices(deviceId) { let _this = this wx.getBLEDeviceServices({ deviceId, success(res) { console.log('device services:', res.services) _this.getConnectDevices([res.services[2].uuid]) // 获取 serviceId _this.setData({ serviceId: res.services[2].uuid }) console.log('_this.serviceId :', _this.data.serviceId); _this.getCharacteristicsId(_this.data.deviceId, _this.data.serviceId) } }) }, /** * @description 获得 CharacteristicsId */ getCharacteristicsId(deviceId, serviceId) { let _this = this wx.getBLEDeviceCharacteristics({ deviceId, serviceId, success(res) { console.log('Characteristics:', res.characteristics) // 设置 characteristicId、characteristicIdNotify _this.setData({ characteristicIdNotify: res.characteristics[0].uuid, characteristicId: res.characteristics[0].uuid, }) _this.openNotify(deviceId, serviceId, _this.data.characteristicIdNotify) console.log('CharacteristicsId:', res.characteristics[0].uuid) } }) }, /** * @description 开启 notify */ openNotify(deviceId, serviceId, characteristicId) { let _this = this wx.notifyBLECharacteristicValueChange({ state: true, deviceId, serviceId, characteristicId, success(res) { console.log('notify 开启成功', res.errMsg) setTimeout(() => { _this.writeDevice(deviceId, serviceId, _this.data.characteristicId) }, 2000) }, fail(err) { console.log('openNotify err: ', err) } }) }, /** * @description 向设备写入数据 */ writeDevice(deviceId, serviceId, characteristicId) { let _this = this // 向蓝牙设备发送一个0x00的16进制数据 let senddata = 'test' let buffer = new ArrayBuffer(senddata.length) let dataView = new DataView(buffer) for (var i = 0; i < senddata.length; i++) { dataView.setUint8(i, senddata.charAt(i).charCodeAt()) } // let buffer = new ArrayBuffer(2) // let dataView = new DataView(buffer) // dataView.setUint16(0, 3) wx.writeBLECharacteristicValue({ deviceId, serviceId, characteristicId, value: buffer, success(res) { console.log('写入数据成功', res.errMsg) _this.readDevice(deviceId, serviceId, _this.data.characteristicId) }, fail(err) { console.log('err', err) }, complete() { _this.closeConnection(deviceId) _this.closeBlue() } }) }, readDevice(deviceId, serviceId, characteristicId) { let _this = this // 必须在这里的回调才能获取 wx.onBLECharacteristicValueChange(function (characteristic) { console.log('characteristic value comed:', characteristic) }) wx.readBLECharacteristicValue({ // 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接 deviceId, // 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取 serviceId, // 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取 characteristicId, success(res) { console.log('readBLECharacteristicValue:', res.errCode) } }) }, closeConnection(deviceId) { wx.closeBLEConnection({ deviceId, success(res) { console.log('关闭设备连接:', res) } }) } }) - 提供一个最简复现 Demo https://developers.weixin.qq.com/s/izuwUrmK784V
2019-03-12自己搞个假的
小程序的tabbar还是不能动态隐藏吗?小程序的tabbar还是不能动态隐藏吗?
2018-12-22