分享给朋友和分享到朋友圈
- 只能在某个页面下分享,不支持在 app.js 中配置全局分享
-
分享到朋友圈的前提是能分享给朋友,并且有 web-view 的页面不支持分享到朋友圈
150fe8a47381385a88762e7cf372189.jpg
onShareAppMessage({from, target, webViewUrl}) {
console.log(from)
console.log(target)
console.log(webViewUrl)
let { share_title: title, share_poster: imageUrl } = this.data
console.log(title, imageUrl)
let path = '/pages/index/index'
return {
title,
path,
imageUrl,
}
},
onShareTimeline() {
let { share_title: title, share_poster: imageUrl } = this.data
console.log(title, imageUrl)
let query = ''
return {
title,
query,
imageUrl,
}
},
网友评论