在微信小程序實現跟H5頁面進行交互的方法
1.使用web-view標簽內嵌網頁,通過 src 攜帶參數,通過 @message 接收h5傳回的數據實現交互
<template>
<view>
<web-view :src="activity.imgUrl?id=xxx" @message="postMessage"></web-view>
</view>
</template>
2.在h5頁面通過 wx.miniProgram.postMessage 向小程序傳遞參數
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script><script type="text/javascript">
wx.miniProgram.postMessage({
data: 'foo'
})
</script>