个人案例
- 安馨课博
开发感悟技术分享、代码人生,并且通过小程序实现的各种游戏。
小程序实现多种游戏扫码体验
2024了,这个问题还存在,官方也不解释一下吗?
Mac版 企业微信内置浏览器 无法下载文件第一步[图片] 第二步[图片] 第三步[图片] 文件是后端java程序以文件流的形式传递过来的 经测试,只有Mac版的微信内置浏览器出现该问题。 所有第三方浏览器都可以正常下载,包括(Mac 谷歌浏览器,Mac Safari浏览器,Windows IE浏览器,Windows 谷歌浏览器,Windows 企业微信内置浏览器)
05-23解决了,emmm,取消自动运行体验评分就好了,但是奇奇怪怪的。 [图片]
开发工具无法清除setInterval?手机上没有出现,但是在微信开发工具出现了clearInterval无法清除setInterval [图片] [图片] 当我再次调用dati()之后会出现两个定时器执行time--,而且time竟然是不一样的,清了开发工具缓存,关了热重载都不行,以前没遇到这种情况, 基础库2.27.0,
2022-11-25升级后的配置问题,删除 C:\Users\(用户)\AppData\Local\微信开发者工具\User Data\文件夹下面的文件就可以了
上传时报错,请问是什么原因?Unexpected token o in JSON at positimessage:SyntaxError: Unexpected token o in JSON at position 1 appid: wx************0c80 openid: o6z****************************098AzU ideVersion: 1.06.2204182 osType: win32-x64 time: 2022-04-26 13:03:43
2022-07-28升级后的配置问题,删除 C:\Users\(用户)\AppData\Local\微信开发者工具\User Data\文件夹下面的文件就可以了
开发者工具预览报错?SyntaxError: Unexpected token o in JSON at position 1 [1.06.2205231][win32-x64] [图片] 这个什么情况?
2022-07-28升级后的配置问题,删除 C:\Users\(用户)\AppData\Local\微信开发者工具\User Data\文件夹下面的文件就可以了
上传、预览、真机调试失败?message:SyntaxError: Unexpected token o in JSON at position 1 appid: xxxxxxxxxxxxx openid: xxxxxxxxxxxxxxxxxxx ideVersion: 1.06.2206020 osType: win32-x64 time: 2022-06-06 09:52:41
2022-07-28升级后的配置问题,删除 C:\Users\(用户)\AppData\Local\微信开发者工具\User Data\文件夹下面的文件就可以了
预览和真机调试报错?message:SyntaxError: Unexpected token o in JSON at position 1 appid: wx045eaed9a3049261 openid: o6zAJs7hHmbGGFFHfBnFnrgbL4to ideVersion: 1.06.2205231 osType: win32-x64 time: 2022-06-02 15:30:20 预览和真机调试报这个错.
2022-07-28升级后的配置问题,删除 C:\Users\(用户)\AppData\Local\微信开发者工具\User Data\文件夹下面的文件就可以了
升级1.06上传报错,为何?1.05可以,1.06就报错 message:SyntaxError: Unexpected token o in JSON at position 1 appid: ************* openid: ********************* ideVersion: 1.06.2206090 osType: win32-x64 time: 2022-06-15 11:04:01
2022-07-28微信小程序有提供了CSS属性 1、未选中的背景样式:wx-checkbox-input 2、选中后的背景样式 : wx-checkbox-input.wx-checkbox-input-checked 3、选中后的勾子的样式:wx-checkbox-input.wx-checkbox-input-checked::before /* 未选中的背景样式 */ checkbox .wx-checkbox-input{ width: 40rpx; height: 40rpx; border-radius: 50%; } /* 选中后的背景样式 */ checkbox .wx-checkbox-input.wx-checkbox-input-checked{ border: none; background: #37C674; } /* 选中后的勾子样式 */ checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{ width: 40rpx; height: 40rpx; line-height: 40rpx; border-radius: 50%; text-align: center; font-size:32rpx; color:#FFF; background: transparent; transform:translate(-50%, -50%) scale(1); -webkit-transform:translate(-50%, -50%) scale(1); }
自定义组件使用radio 和checkbox 如何修改样式?自定义组件使用radio 和checkbox如何修改样式?因为checkbox有多个样式,不能用统一修改
2022-05-24/** * 监听富文本框 */ inputChange: function (e) { const that = this;console.log(e) let fileIDArr = this.data.fileIDArr; let arr = []; e.detail.delta.ops.forEach(item=>{ if(item.insert.image){ arr.push(item.insert.image) } }) if(fileIDArr.length>arr.length){ fileIDArr.forEach((item,idx)=>{ let index = arr.findIndex(res=>res==item); if(index==-1){ wx.cloud.deleteFile({ fileList: [item] }).then(res => { // console.log(res.fileList) }).catch(error => { }) } }) } that.setData({ content: e.detail.html, fileIDArr:arr }) },
小程序原生富文本editor删除图片触发哪个函数?[图片] [图片] 点击中间的删除后,请问触发哪个函数响应,翻文档半天没有瞅见,求解答
2022-01-262022了,根据索引删除数组某一项的方法推出了吗
云数据库如何删除数组类型字段的指定索引内容?集合abc数据结构如下: { user: [ {name: "Zhang", age: 18}, {name: "Wang", age: 18}, {name: "Li", age: 18}, {name: "Zhao", age: 18}, ] } 我想把{name: "Li", age: 18}删除掉,请问这个怎么操作? 官方文档只提供了shift、pop等从数组头或尾删除的方法,我没找到删除指定索引的方法,求教高手。
2022-01-20