内嵌网页分享
发布于 6 年前 作者 rjin 19227 次浏览 来自 问答

用web-view内嵌页面,  怎么分享当前页?(自定义标题、链接)

2 回复

onShareAppMessage: function (options) {

//console.log(options);

return {

title: '25小时网',

desc: '佛山第一生活门户',

path: '/pages/index/index?url=' + encodeURIComponent(options.webViewUrl),

}

}

onShareAppMessage(res) {
  return {
    title: title,
    path: url,
    success: function (res) {
    },
    fail: function (res) {
    }
  }
},
回到顶部