影响就是,无法告知用户剪切板权限被禁用了。 虽然可以设置剪切板之后,再读取剪切板内容,通过比较前后内容是否一致来判断是否setClipBorad成功,但是这种做法感觉不太好。
安卓机禁用微信剪切板权限后,wx.setClipboardData回调仍返回复制成功。1.安卓机(小米11 pro)禁用剪切板权限。 2.调起wx.setClipboardData接口,仍出现【内容已复制】 toast,success回调显示成功。 [图片] 3.实际剪切板确实无法使用。
2022-11-04json文件里引用的组件地址不对。
/psges/grtminiprogrsmcode/index/json:未找到?miniprogram/pages/grtminiprogrsmcode/index/json:usingcomponents/[]cloud-tip_madol未找到是什么原因
2022-11-04this.data.userInfo
为什么从页面中的data获取的值总是undefined,但是能在AppData里面看到值?[图片] [图片][图片]
2022-11-031.navigateBack不能传参 2.可以考虑用缓存或者全局变量 3.或者获取页面栈,在当前页的onUnload中直接调用前一页对应的函数。
小程序如何在返回上一页面时传参?请问如果需要使用小程序自带的左上角返回按钮,点击时向上一个页面传回参数,需要把prevPage函数写在哪里呢?子页面的onunload吗?谢谢您🌹
2022-11-02报错说得是,index.js 这个文件第9行附近,bindSwitchChange函数内,有异常。 shouldTest不能直接使用,需要this.data.shouldTest [图片]
初学小程序,测试switch,ReferenceError: XXX is not defined?初学小程序,测试switch。新建项目,然后修改app.json,添加: "useExtendedLib": { "weui": true }, "usingComponents": { "mp-cells": "weui-miniprogram/cells/cells", "mp-cell": "weui-miniprogram/cell/cell", "mp-form": "weui-miniprogram/form/form" } 修改index.wxml: <!--index.wxml--> <mp-cell title="测试" ext-class=""> <switch slot="footer" bindchange="bindSwitchChange" /> </mp-cell> 修改index.js: // index.js Page({ data: { shouldTest: true }, bindSwitchChange(e) { this.setData({ shouldTest: e.detail.value }); console.log(shouldTest); } }) 然后报错: ReferenceError: shouldTest is not defined at zo.bindSwitchChange (index.js? [sm]:9) at Object.i.safeCallback (WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1) at WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 at Cn (WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1) at WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 at oe (WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1) at ie (WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1) at WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 at WAServiceMainContext.js?t=wechat&s=1667317212484&v=2.27.0:1 at o.emit (WAServiceMainContext.js?t=wechat&s=1667317212484&v=2.27.0:1)(env: macOS,mp,1.06.2209190; lib: 2.27.0) errorReport @ WAServiceMainContext.js?t=wechat&s=1667317212484&v=2.27.0:1 thirdErrorReport @ WAServiceMainContext.js?t=wechat&s=1667317212484&v=2.27.0:1 (anonymous) @ WAServiceMainContext.js?t=wechat&s=1667317212484&v=2.27.0:1 (anonymous) @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 i.safeCallback @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 i.call @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 message @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 i.safeCallback @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 (anonymous) @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 Cn @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 (anonymous) @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 oe @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 ie @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 (anonymous) @ WASubContext.js?t=wechat&s=1667317212484&v=2.27.0:1 (anonymous) @ WAServiceMainContext.js?t=wechat&s=1667317212484&v=2.27.0:1 emit @ WAServiceMainContext.js?t=wechat&s=1667317212484&v=2.27.0:1 dispatch @ WAServiceMainContext.js?t=wechat&s=1667317212484&v=2.27.0:1 cb @ WAServiceMainContext.js?t=wechat&s=1667317212484&v=2.27.0:1 a @ VM146 asdebug.js:10 c @ VM146 asdebug.js:10 (anonymous) @ VM146 asdebug.js:1 f @ VM146 asdebug.js:1 g @ VM146 asdebug.js:1 (anonymous) @ VM146 asdebug.js:1 _ws.onmessage @ VM146 asdebug.js:1 请问我的问题出在哪里呢?谢谢!
2022-11-02怎么换的?加decode用\n换行 应该不会有这种问题 用<text decode> example \n te\nxt</text>
text文本段落换行与一个空格重复出现多个问题?text文本换行 space文本空格出现多个[图片][图片][图片][图片]
2022-11-01let that = this; getCollectStatus(){ ... .then((res) => { ... that.setData({}) }) }
做了一个收藏功能,为什么退出页面再进去图标会变回去?不会改变数据,就内容还在数据库里好好待着,但是图标又从已收藏变成未收藏了。 使用的是云开发的数据存储,设置了两个按钮分别添加了add和cancle两个函数。 加入addLove [图片] 取消cancleLove [图片] 然后又写了一个查询数据库内容的函数getcollect,在add和cancle中分别调用来控制按钮的变化。 [图片] 可是为什么每次重新进入页面按钮不会保持,数据还在,只是图标没有保持选择状态。
2022-11-01[图片] 这玩意是undefined,没有取到值
Cannot read property 'sendDanmu' of undefined?TypeError: Cannot read property 'sendDanmu' of undefined [图片]
2022-11-01不支持多地,抵制加班 ^_^
微信开发者工具什么时候支持多地登陆?一般公司电脑要登录微信开发者工具,回家加班可能也要登陆微信开发者工具,什么官方弄一个支持多地登陆的配置
2022-11-01服务器有配置到安全域名吗
原小程序已经上线,增加功能,本地能跑,换成服务器ip,小程序无法访问服务器。怎么解决?小程序已上过线,现在增加功能,本地测试能跑,换成原来的服务器ip无法登陆。体验版都无法登陆.
2022-11-01