小程序通过webview嵌套H5, 拉起H5,期望:H5会返回一个token,并将页面重新定向回到小程序某个页面。
问题是否能够实现这一点,这个在H5上的参数redirect_uri,能否在H5渲染后,再次主动重定向到小程序(redirect_uri对应的页面)
<template>
<web-view
:src="ourUrl"
@load="bindload"
@message="bindmessage"
></web-view>
</template>
export default {
data() {
return {
outUrl: 'https://abc.com/authorize?response_type=code&redirect_uri=小程序某个页面路径'
}
}
}
H5页面的WeixinJSBridge能力
自行实现即可