vue 给嵌套的iframe子页面传数据 postMessage

Vue组件下嵌套了一个不同域下的子页面,iframe子页面不能直接获取到父页面的数据,即使数据存在localStorage中,子页面一样是获取不到的,所以只好使用postMessage传数据:

<iframe src="http://127.0.0.1:8888/index.html" class="mapFrame" ref="mapFrame">iframe>

父页面发送数据参数:

                    

子页面接收参数:

        

 

转载于:https://www.cnblogs.com/xiaofenguo/p/10858374.html

你可能感兴趣的:(vue 给嵌套的iframe子页面传数据 postMessage)