Vue中嵌入html页面并相互通信
需求:b2b支付需要从后获取到数据放到form表单提交跳转,如下:
但是vue目前暂时没找到有类似功能相关文档,所以我采用iframe嵌套的方式
1. Vue中嵌入Html
<iframe src="/static/gateway.html" ref="iframe" width="100%" height="120%" v-show="iframeShow"></iframe>
2. Vue向html中传递数据
在data中定义一个iframe绑定的页面的对象
iframeWin: {},
在mounted生命周期中去绑定具体Iframe的页面
this.iframeWin = this.$refs.iframe.content