小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在分享之前做一些操作 比如调用后端的接口 <button :open-type="share" hover-class="navigator-hover" class="atten-btn" ref="bnt" @click="mpShare()">分享给朋友</button> 点击按钮之后 mpShare(){ 不想主动触发分享 if(){ 在调用分享 } }
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
onShareAppMessage只能配置在当前页面,无法在子组件中渲染,button可以放在子组件中引进来,点击就会调用当前页面的分享配置。且button只能手动点击触发,无法通过js触发
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你这种实现不了,只有换其他方式
可以参考文档,https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/miniapp/component/onShareAppMessage.html
设置了open-type="share"就不会触发mpShare方法,分享要写在onShareAppMessage方法里面
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
onShareAppMessage只能配置在当前页面,无法在子组件中渲染,button可以放在子组件中引进来,点击就会调用当前页面的分享配置。且button只能手动点击触发,无法通过js触发
你这种实现不了,只有换其他方式
可以参考文档,https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/miniapp/component/onShareAppMessage.html
设置了open-type="share"就不会触发mpShare方法,分享要写在onShareAppMessage方法里面