return {
title: ‘好妞妞食品饮料招商网’,
path: ‘’, //当前页面 path ,必须是以 / 开头的完整路径
success: function (res) {
// 转发成功
},
请问开发文档中说path这里必须以/开头并且是完整路径,我们现在想实现,客户再哪个页面,转发的就是哪个页面的URL。请问如何实现?
来结贴:
1、wxml页面,用变量表示{{a}}
2、js页面data中绑定a
3、转发时,将web-view的URL获取并且写在path中
4、调试过程中可以将options.webViewUrl写在title中用模拟器查看分享时的URL,例如title:options.webViewUrl
path:’/pages/index/index?weburls=’+options.webViewUrl
敢问楼上,你的意思是:
比如我小程序首页是<web-view src=“https://m.1111.com”></web-view>
当用户点击到https://m.1111.com/a/index.html的时候,点击分享按钮。
Page({onShareAppMessage(options) { console.log(options.webViewUrl)}})
这个是可以获取到https://m.1111.com/a/index.html这个地址码?
------------------------------------------------------------------------------------
下边这段代码该如何改善呢?
------------------------------------------------------------------------------------
Page({
onShareAppMessage: function (res) {
if (res.from === 'button') {
// 来自页面内转发按钮
console.log(res.target)
}
return {
title: '好妞妞食品饮料招商网',
path: '/pages/index/index',
success: function (res) {
// 转发成功
},
fail: function (res) {
// 转发失败
}
}
}
})
Page({
onShareAppMessage(options) {
var that = this
var return_url = options.webViewUrl
return {
title: that.data.title,
path: return_url,
success: function (res) {
// 转发成功
},
fail: function (res) {
// 转发失败
}
}
}
})