提示
机型
Android手机
调试型号
真机调试1.0
问题解决
由于真机调试1.0版本属于稳定版本,但是没想到会出现这个问题,所以想要解决真机调试的时候点击转发按钮调用 onShareAppMessage 方法的时候需要将真机调试切换至2.0版本。
onShareAppMessage 方法的使用
<button class="bt-share flex-center" type="primary" open-type="share"><text style="color: #FFFFFF;font-size: 14px;line-height: 30px;">分享</text>
</button><script>onShareAppMessage(() => {return {provider: "weixin",scene: "WXSceneSession",type: 0,title: '【车源推荐】' + dataSource.value.carName,imageUrl: dataSource.value.cover,miniProgram: {carId: carId.value},success: function(res) {console.log("success:" + JSON.stringify(res));},fail: function(err) {console.log("fail:" + JSON.stringify(err));}}})
</script>
代码中使用到的参数说明
provider:分享服务提供商
scene:分享的场景
- WXsceneSession:分享到聊天界面
- WXSceneTimeline:分享到朋友圈
- WXSceneFavorite:分享到微信朋友圈
type:分享形式
- 0:图文
- 1:纯文字
- 2:纯图片
- 3:音乐
- 4:视频
- 5:小程序
title:分享内容的标题
imageUrl:图片地址。type为0时,推荐使用小于20Kb的图片【type 为 0、2、5 时必选】
miniProgram:分享小程序必要参数【type 为 5 时必选】
success:接口调用成功的回调
fail:接口调用失败的回调