同问,不知道大佬有没有解决
Component中的properties支持多种类型吗?加入父组件传给子组件一个属性 sayType ,既可能是数组,也可能是字符串,代码层面应该如何书写? 可以类似下面这样写吗 Component{ properties: { sayType: string/Array, value: ''/[] } }
09-19请问解决了吗 同问
wx.addPhoneRepeatCalendar日历添加在wx.authorize使用回调报错? //返回结果: 日程添加失败的回调函数 {"errMsg": "addPhoneRepeatCalendar:fail can only be invoked by user TAP gesture."} /** * @description 添加到日历 */ addPhoneRepeatCalendar () { const that = this wx.getSetting({ success(res) { // 判断是否已经授权 if (!res.authSetting['scope.addPhoneCalendar']) { wx.authorize({ scope: 'scope.addPhoneCalendar', success() { that.wxAddPhoneRepeatCalenda() }, fail() { // 用户拒绝授权,提示用户授权 wx.showToast({ title: '请先授权日历', icon: 'none', duration: 2000 }) that.setData({ canIUse: false }) } }) } else { // 已经授权,调用添加日程 API that.wxAddPhoneRepeatCalenda() } } }) }, wxAddPhoneRepeatCalenda () { let currentDate = new Date(); currentDate.setMonth(currentDate.getMonth() + 1); let nextMonthTimestamp = currentDate.getTime(); wx.addPhoneRepeatCalendar({ title: `「小日常桑」别忘了打卡喔~`, // 日程标题,必填项 startTime: new Date().getTime()/1000, // 日程开始时间,必填项 endTime: nextMonthTimestamp/1000, // 日程结束时间,必填项 description: '「小日常桑」提醒您打卡时间到啦~', alarm: true, alarmOffset: '0', //提醒提前量,单位秒,默认 0 表示开始时提醒 repeatInterval: 'day', //每天重复 success(res) { console.log('日程添加成功的回调函数',res) // 日程添加成功的回调函数 }, fail(res) { console.log('日程添加失败的回调函数',res) // 日程添加失败的回调函数 } }) },
07-31有没有大佬指导一下
请问使用ts+原生小程序方案在开发中wx.qy提示ts编译错误怎么处理呢?[图片] 请问有什么扩展包之类的处理添加一下ts的类型吗?
06-25