- 订阅消息和分享可否在一次点击事件实现?需求是页面上一个分享按钮,在分享之前要询问用户是否订阅消息
<button open-type="share" class="share-btn">分享页面</button> onShareAppMessage (res) { if (res.from === 'button') { // 来自页面内分享按钮 let couponTempId = ['fdsjkghdfsklghdsklfjghieru'] uni.requestSubscribeMessage({ tmplIds: couponTempId, complete () { // 成功 失败都执行 return { title: '测试标题', path: `测试url`, } } }) } } 需求是页面上一个分享的按钮,在分享之前要询问用户是否订阅消息,然后再打开分享转发。 以上代码弹出订阅消息后,就不咱显示转发页面了 是否有方法能在一次点击事件中完成这2个动作呢?
08-10 - openCustomerServiceChat fail by user TAP gesture?
报错: openCustomerServiceChat:fail can only be invoked by user TAP gesture. [图片] 使用uniapp,需求是小程序用户登录后唤起客服,跳转到客服界面。 在@getphonenumber事件中使用的wx.openCustomerServiceChat接口。 前几周开发的时候还是好用的,可以正常跳过去。今天突然发现不好用了,报这个错误。 是微信官方更新了什么嘛?在getphonenumber这个事件中不支持唤起客户了嘛? 代码: [图片] [图片]
05-24 - wx.openCustomerServiceChat打开客服聊天界面想实现用户自动发一条消息给客服?
wx.openCustomerServiceChat打开客服聊天界面后,想要用户这边能自动发一条消息给客服。这个能实现嘛?
05-21