wx.addPhoneCalendar体验版调用成功、正式环境调用失败?
以下是代码片段,正式版本每次调用,都直接走的file函数。 wx.addPhoneCalendar({ title: that.data.calendarRemindDTO.title, startTime: Number(this.data.calendarRemindDTO.timeStamp) / 1000, description: that.data.calendarRemindDTO.description, success: function () { wx.showToast({ title: '添加日历成功', icon: 'success', duration: 2000 }) that.setData({ isShowRemindMask: false, }) }, fail: function () { wx.showToast({ title: '添加日历失败,请重新尝试', icon: 'error', duration: 2000 }) } })