内嵌网页分享

发布于 7 年前作者 rjin19309 次浏览最后编辑 7 年前来自 ask

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

2 回复
ywan
ywan1 楼6 年前

onShareAppMessage: function (options) {

//console.log(options);

return {

title: '25小时网',

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

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

}

}

qfan
qfan2 楼6 年前
onShareAppMessage(res) {
  return {
    title: title,
    path: url,
    success: function (res) {
    },
    fail: function (res) {
    }
  }
},