个人案例
- 电子木鱼丨功德木鱼丨解压颂钵
demo展示小程序
个人小程序扫码体验
- 六点早起打卡
小程序早起打卡,0投入坚持打卡领话费
早起打卡扫码体验
开发-开发管理-服务器域名
在企业微信中通过外部H5页面来打开企业微信小程序,提示要配置可信域名,请问应该在哪配置?企业微信里自建应用里,已经关联了小程序。然后我想用企业微信的扫一扫来访问一个外部页面,在外部页面通过agentConfig来跳到这个小程序里的指定页面,回调里提示需要配置可信域名,这个可信域名应该在哪里配,是配置在小程序所属的自建应用下面么?
2022-09-30off_ctx.beginPath(); off_ctx.arc(_width/2, _width/2, _width/2 , 0, 2 * Math.PI, false); off_ctx.clip(); off_ctx.closePath(); off_ctx.drawImage(off_image, 0, 0, _width, _height); const imgData = off_ctx.getImageData(0, 0, _width, _height) ctx.putImageData(imgData, _img_left, _img_top); 真机没有问题 最新版mac 开发工具有问题 基础库2.19.6(RC1.05.2203251)
离线 createOffscreenCanvas clip() 方法在开发工具bug?代码 https://developers.weixin.qq.com/s/3vHz98mZ7dyV mac 工具图 [图片] ios真机 [图片]
2022-03-30看这个 https://zhuanlan.zhihu.com/p/357982630
什么情况必须接入分账?1.如果一个平台全是自营商品用不用接入分账?如果有自营商品也有不是自营商品(即有入驻商户)的呢? 2.与入驻商户签代收协议可以替代分账吗?是否合规? 3.收款到微信商户账户上用不用纳税(未提现到对公账)? 4.什么样的情况必须接入分账呢?
2021-04-07嵌套循环查询
通过一个表的某个字段查询出另一个表,并合并?表一: [ {list: [{city_id: 0001, key1: value1},{city_id: 0002, key2: value2}...]} ] 表二(city表): [ {_id: 0001, scene: ['天安门','故宫','王府井']}, {_id: 0002, scene: ['东方明珠','外滩']} ..... ] 如上描述:表1里有个list字段是个数组对象, 想要的结果是:通过list数组下面的的每个city_id查询city表,把scene字段添加到表一对应的数组中 结果为: [ {list: [{city_id: 0001, key1: value1, scene: ['天安门','故宫','王府井']},{city_id: 0002, key2: value2, scene: ['东方明珠','外滩']}...]} ]
2021-04-07工具-构建npm
云开发报错?[图片]
2021-04-07TextEncoder: var encoder = new TextEncoder() encoder.encode("中文abc"); //result : Uint8Array(9) [228, 184, 173, 230, 150, 135, 97, 98, 99] 兼容写法: unescape(encodeURIComponent("中文abc")).split("").map(val => val.charCodeAt()); //result : (9) [228, 184, 173, 230, 150, 135, 97, 98, 99] TextDecoder: var decoder = new TextDecoder(); decoder.decode(Uint8Array.from([228, 184, 173, 230, 150, 135, 97, 98, 99])); //result : 中文abc 兼容写法: decodeURIComponent(escape(String.fromCharCode(...[228, 184, 173, 230, 150, 135, 97, 98, 99]))); //result : 中文abc
小程序不支持TextDecoder?下载云存储的json文件,涉及汉字转码问题,开发工具上完整运行 let gbk = new TextDecoder('gbk').decode(new Uint8Array(res.data)) //这里把gbk文件读入转换成了utf8的String 真机上 TypeError: TextDecoder is not a constructor 求高手解答
2021-04-07先订阅https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-ble/wx.notifyBLECharacteristicValueChange.html再监听https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-ble/wx.onBLECharacteristicValueChange.html
关于蓝牙demo接收不到数据的请求?大家好,我使用小程序的demo,结果返回的properties: {read: true, write: false, notify: false, indicate: false},也就是说只有read为true,这个该怎么解决,我的需求是要接收蓝牙数据
2021-04-06[图片][图片] [图片]工具里可以给有数据的集合add数组数据,代码里面不行 what?
add添加数据能添加数组嘛?[图片] [图片] [图片] 但是却无法在数据库添加成功 [图片] 所以只能用update语句插入数组吗
2021-04-02