uniapp 使用 uni.share分享功能报错 :fail:{"errMsg":"share:fail method 'share' not supported"}
报错代码:
<u-button :custom-style="customStyle" @click="share">
<u-icon name="zhuanfa" color="#ffffff" size="35"></u-icon> 分享
</u-button>
// 分享 share() { console.log('分享了'); uni.share({ provider: "weixin", scene: "WXSceneSession", type: 1, summary: "我正在使用HBuilderX开发uni-app,赶紧跟我一起来体验!", success: function(res) { console.log("success:" + JSON.stringify(res)); }, fail: function(err) { console.log("fail:" + JSON.stringify(err)); } }); },
解决方案:
在 u-button 那里加上 open-type="share"
u-button :custom-style="customStyle" open-type="share"@click="share">
<u-icon name="zhuanfa" color="#ffffff" size="35"></u-icon> 分享
</u-button>