vue2 通过url ‘URLScheme‘实现直接呼起小程序
vue2 通过url 'URLScheme’实现直接呼起小程序
1.首先进入微信小程序后台
2.
3.配置可跳转path匹配小程序路径
4.vue代码如下
template
<el-button type="primary" @click="jumpToURLScheme">点击跳转</el-button>
script
methods: {
jumpToURLScheme(){
//例子
//window.location.href = 'weixin://dl/business/?appid=123&path=pages/play/index-new&query=postId=3D2';
window.location.href = 'weixin://dl/business/?appid=你的小程序id&path=你的跳转页&query=你要传的参数';
},
mounted() {
this.jumpToURLScheme()
}