如题,需求是h5页面传参给小程序接收,代码如下:
h5:
<template>
<div>
<button @click="postMessage">click</button>
</div>
</template>
<script>
import wx from 'weixin-js-sdk'
export default {
data () {
return {
}
},
methods: {
postMessage () {
const params = {
wboid: 'data',
wid: 'http://localhost:8080'
}
const data = JSON.stringify(params)
wx.miniProgram.postMessage({ data })
}
}
}
</script>
小程序:
<template>
<div>
<web-view
:src="url"
@message="bindmessage"
></web-view>
</div>
</template>
<script>
export default {
data () {
return {
url: 'http://localhost:8081'
}
},
methods: {
bindmessage (e) {
console.log(e)
}
}
}
</script>
h5的服务是localhost:8081,小程序是8080。
我在点击h5按钮的时候,小程序点击进入web-view的page直接就跳转到h5页面了,也没有打印任何信息,求解。
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…