h***@sina.com
h***@sina.com
  • 发布:2021-04-22 16:43
  • 更新:2021-04-23 13:42
  • 阅读:1584

如何从uniapp向跳转的webview加载的远端页面传递数据

分类:uni-app

如何从uniapp向跳转的webview加载的远端页面传递数据,获取到的plus是空

2021-04-22 16:43 负责人:无 分享
已邀请:
h***@sina.com

h***@sina.com (作者)

已解决

写在前面:重要!h5页面(我用的vue),一定要用alert查看结果,console的日志会显示到hbuilerx的控制台里,结果会一直为空(坑死),我的版本是2.9.5。

从h5向uniapp传值,网上的两种方法确实都可以,url加问号传参,或者plus.webview.create(url, id, style, {data:{}})的第四个参数传参,alert能直接打印出来传递的参数

步骤一、uniapp代码:

let wv = plus.webview.create( 'http://www.baidu.com/#/clientEdit?aa=1&bb=2','mendMerchant', {
top:'66px',
height:'92%',
},{data:this.userInfo}) //this.userInfo是我要传的对象,不用data键值对的方式传的话,h5接收后会是多个字段,而非一个对象
let currentWebview = this.$mp.page.$getAppWebview()
currentWebview.append(wv);

步骤二、

h5代码 (weiview src引用的h5页面代码,h5我用的vue,另外,js原生支持plus对象,不需要引入外部资源支持):

方式一,获取plus.webview.create第四个参数传来的值:

document.addEventListener("plusready",function (){
alert(JSON.stringify(plus.webview.getWebviewById("mendMerchant").data)) //data与uniapp里定义的键名保持一致,那里也是定义的data:this.userInfo
},false);

方式二(url获取):alert(this.$route.query.aa)

亲测可以,qq 372094494,有问题可以交流

该问题目前已经被锁定, 无法添加新回复