小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我在页面中通过一个按钮把要跳转的url传给某一只有一个web-view的页面,然后通过onload的setDate把url设置进去,页面是可以打开的,但把这个页面转发出去的时候,在点进去,页面的空白的,因为web-view的url这个时候没有值传进来。我想问一下,在转发的时候如何在onShareAppMessage中获取之前传过来的url并在path中打开
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
onShareAppMessage:
function
() {
//分享
var
that =
this
return
{
path:
'page/index/index?path=www.xxx.com
'
}
onLoad:
(options) {//从分享进的时候
path= options.path
},
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
onShareAppMessage:
function
() {
//分享
var
that =
this
return
{
path:
'page/index/index?path=www.xxx.com
'
}
}
onLoad:
function
(options) {//从分享进的时候
var
that =
this
var
path= options.path
},