发布于 4年前

uniapp 微信小程序右上角分享

export default {
    data() {
        return {
            ...
        }
    },
    onLoad: function () {
        ...
    },
    onShareAppMessage(res) {
            if (res.from === 'button') {
                console.log("来自页面内按钮分享")
             }
            return {
                path:"/pages/index/index",  //不设置默认当前页面
                title: "我是标题", 
                imageUrl:"..." //不设置默认截取页面
             }
    },
    methods: {
        ...
    }
}

此时小程序右上角的分享已生效,如有需要也可以添加 share 属性的按钮触发分享操作

<button  type="warn"  open-type="share" >分享</button>
©2020 edoou.com   京ICP备16001874号-3