- 微信小程序开发者工具老是自己编译?是什么问题
我的开发者工具在开发的过程中,老是自己给我编译,如下方视频: https://v.qq.com/x/page/h0030p70q42.html
2021-09-04 - 公众号调用回调获取code的时候出现问题,怎么解决?
https://xxxxxxxxx.com/h5/?code=xxxxxxxxxxxxxxxxxxxxxxxxxx&state=123#/pages/cashApplication/cashApplication 为什么code在这个路径的中间,这个code在进入页面的时候去获取合适,还是点击的时候合适。是因为它的hash吗?
2021-04-20 - 新建小程序的时候已输入AppId就只剩下云开发一个选项了,除非选用测试号,进入编译再修改,正常吗?
[图片] ———————————————————————————————————————————————————— [图片] —————————————————————————————————————— [图片] [图片]
2021-04-02 - 小程序wx.navgateto跳转的时候传过去的值如果是number的传过去都变成string了?
小程序wx.navgateto跳转的时候传过去的值如果是number的传过去都变成string了,这是咋个回事
2020-12-07 - 小程序点击tabbar后需要跳转登录页,有什么好的解决办法吗?
小程序在用的是手机号进行的登录,没有进行微信的授权登录,那么在我去进入点击登录的时候,怎么跳转到登录页面,现在是进入到微信的登录页面以后走完onload方法以后才会进入登录。 [图片] [图片] 怎么才能还没进入到我的这个展示页的时候直接跳转登录
2020-11-02 - config:fail,Error: 系统错误,错误码:63002,invalid signatur
微信小程序再[图片]微信开发者工具上模拟支付的时候报这个错,但是再真机上可以进行正常支付?这是怎么回事?
2020-05-21 - 蓝牙官方代码片段报 错
Cannot read property 'startBluetoothDevicesDiscovery' of null;at onBluetoothAdapterStateChange callback function TypeError: Cannot read property 'startBluetoothDevicesDiscovery' of null [图片] 官方的代码片段,点击开始扫苗的时候报错
2020-05-13 - 蓝牙功能当手机的蓝牙是关闭再开启的时候,数据一直不停的更新?
// pages/unlock/bluetoothlock/bluetoothlock.js Page({ /** * 页面的初始数据 */ data: { showNav: true, bluetoothStatus: false }, // 初始化蓝牙设备 openBluetoothAdapter() { //监听是否打开了蓝牙设备 let that = this wx.openBluetoothAdapter({ success: (res) => { console.log('蓝牙设备成功', res) if (res.errMsg == "openBluetoothAdapter:ok") { // 监听蓝牙设备状态 that.startBluetoothDevicesDiscovery() } }, fail: (res) => { console.log('蓝牙设备失败', res) if (res.errCode === 10001) { // 监听蓝牙是否开启了状态 that.onBluetoothAdapterStateChange() // 在这里一直重复的调用数据 } } }) }, //监听蓝牙是否开启了状态 onBluetoothAdapterStateChange() { let that = this wx.onBluetoothAdapterStateChange(function(res) { console.log('是否开启了蓝牙', res) //判断蓝牙适配器是否处于搜索状态 // 判断设配蓝牙适配器是否可用 if (res.available) { that.setData({ bluetoothStatus: true }) that.startBluetoothDevicesDiscovery() } }) }, // 搜寻附近的蓝牙外围设备 startBluetoothDevicesDiscovery() { let that = this wx.startBluetoothDevicesDiscovery({ services: [], allowDuplicatesKey: false, success(res) { console.log('是否处于搜索状态', res) if (res.errCode == 0) { that.stopBluetoothDevicesDiscovery() } }, fail(res) { console.log(res) // that.stopBluetoothDevicesDiscovery() } }) }, // 停止外围设备搜索,当搜索完毕要停止 stopBluetoothDevicesDiscovery() { let that = this wx.stopBluetoothDevicesDiscovery({ success(res) { console.log('停止设备', res) if (res.errMsg == 'stopBluetoothDevicesDiscovery:ok') { that.getBluetoothDevices() } } }) }, // 获取蓝牙设备列表 getBluetoothDevices() { function ab2hex(buffer) { var hexArr = Array.prototype.map.call( new Uint8Array(buffer), function(bit) { return ('00' + bit.toString(16)).slice(-2) } ) return hexArr.join(''); } wx.getBluetoothDevices({ success: function(res) { console.log(res) if (res.errMsg == 'getBluetoothDevices:ok') { } if (res.devices[0]) { console.log(ab2hex(res.devices[0].advertisData)) } } }) }, //断开所有已建立的连接并释放系统资源建议在使用蓝牙流程后,wx.openBluetoothAdapter 成对调用 closeBluetoothAdapter() { wx.closeBluetoothAdapter({ success(res) { console.log(res) } }) }, /** * 生命周期函数--监听页面加载 */ onLoad: function(options) { this.openBluetoothAdapter() }, })
2020-05-12 - map 组件自定义marks 和 callout 自定义一个按钮上去应该怎么去控制它的位置?
[图片]
2020-04-29 - 小程序的支付统一下单和jsapi支付中的统一 下单有什么不一样的,区别在哪里?
后台小程序支付和jsapi的api支付列表有什么不一样
2020-01-17