- 文档不清晰,没有具体引用的
https://developers.weixin.qq.com/doc/service/guide/h5/jssdk.html 其中的音频接口,上传音频后,拿到id,该调取哪个服务端 api,获取素材呢
09-05 - 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 }) } })
2024-06-03