1.不跨域,携带sessionstorage打开
主页面,存储sessionstorage后,打开页面
1
2
3
4
5
6
7
8
|
let data = { text: '我是数据' }; let isMobile = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)? true : false ; sessionStorage.setItem( 'information' ,JSON.stringify(data)); //ios不能打开新窗口,所以改为移动端在原本页面打开,pc打开新窗口 window.open(window.location.protocol + "//" + window.location.host + reportUrl, isMobile? '_self' : '_blank' ); |
子页面
1
|
var date = JSON.parse(sessionStorage.getItem( 'information' )); |
2.跨域,iframe通信
跨域的情况下,无法携带sessionstorage,通过iframe的postMessage通信机制传递数据;
不跨域也可以用,但更建议使用第一种,比较丝滑~
主页面,写入url,加载完成后,发送数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<iframe id= 'iframe' class= "iframe" v- if = "src" ref= "iframe" :src= "src" ></iframe> let data = { text: '我是数据' }; this .src = url this .$nextTick(()=>{ document.getElementById( 'iframe' ).onload=()=>{ document.getElementById( 'iframe' ).contentWindow.postMessage({ type: 'preview' , data:data }, this .src) document.getElementById( 'iframe' ).onload= null ; } }) |
子页面,执行监听,created、mounted都可以
1
2
3
4
5
6
7
8
9
|
created() { window.addEventListener( 'message' ,(event)=>{ console.log(event.data.type) if (event.data&&event.data.type== 'preview' ){ console.log(event.data.data) let data = event.data.data } }, false ); } |
总结
到此这篇关于vue打开其他项目页面并传入数据的文章就介绍到这了,更多相关vue打开项目页面并传数据内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/qq_20095005/article/details/109747477