- 在自定义组件中createSelectorQuery获取不到节点?
t调试基础库:2.17.0 s使用框架:taro3.0 d代码及报错如下: [图片][图片]报错提示:An SelectorQuery call is ignored because no proper page or component is found. Please considering using `SelectorQuery.in` to specify a proper one.
2021-07-15 - 希望 input textarea 组件提供compositionstart事件
希望 input textarea 组件提供 compositionstart compositionend 事件来监听中文的输入
2019-02-20 - wx.addPhoneCalendar 异常
wx.authorize({ scope: "scope.addPhoneCalendar", success() { // 用户已授权,调用添加日程 API wx.addPhoneCalendar({ title: title, // 日程标题,必填项 startTime: new Date(startTime).getTime() / 1000, // 日程开始时间,必填项 notes: notes, // 日程备注,非必填项 success(res) { console.log(res); // 日程添加成功的回调函数 toastError("添加日程成功"); }, fail(res) { console.log(res); // 日程添加失败的回调函数 toastError("添加日程失败"); } }); }, fail() { // 用户拒绝授权,提示用户授权 toastError("请授权日历权限"); wx.openAppAuthorizeSetting(); } }); addPhoneCalendar:fail can only be invoked by user TAP gesture
2024-08-15 - wx.addPhoneCalendar 回调异常!?
wx.addPhoneCalendar 唤起日历后如果取消, IOS 执行 fail , 安卓执行 success https://developers.weixin.qq.com/s/aXq7Lzmz7Ko3
2021-03-05 - addPhoneRepeatCalendar,往系统日历写入事件,提示授权拒绝?
失败回调提示这个:addPhoneRepeatCalendar:fail authorization refuesed,打印的微信授权列表scope.addPhoneCalendar 已授权,隐私协议也添加了日历权限,所以到底是什么原因导致调用失败?? [图片]
2024-04-30 - 调用wx.addPhoneCalendar时,alarmOffset设置了但无效?
在华为P30 PRO 中,调试wx.addPhoneCalendar时,设置了alarmOffset,但调试时没有效果: wx.addPhoneCalendar({ title:'增加日程测试' , startTime:(new Date()).getTime() / 1000, description:"这是日程内容", alarm:'true', alarmOffset:3000, success:()=>{ console.log('addCalendar is ok') }, fail:(res)=>{ console.log(res) }, complete:(res)=>{ console.log(res) } }) 调试如下图,设置的alarmOffset没有生效,请问是什么原因呢? [图片]
2021-02-26 - wx.addPhoneCalendar日历接口只能添加, 不能编辑和删除啊?
业务需求, 需要添加, 删除 和编辑, 现在貌似只有添加, 后期会完善该功能吗
2021-07-07 - wx.addPhoneCalendar,调用成功,但是我点击返回,没有添加日历,如何监听到呢?
[图片]
2022-08-16 - addPhoneCalendar授权后可以直接添加到日历?
wx.addPhoneCalendar授权后可以直接添加到日历吗,不再弹出系统日历,直接添加到日历中
2022-10-31 - 小程序的swiper支持嵌套吗?
我想在小程序里做一个swiper嵌套的需求(即上下滑动的同时某一页支持左右滑动),请问小程序可以实现吗?
2017-07-15