浏览器跳转微信小程序
2021-02-07 本文已影响0人
RadishHuang
小程序有提供
URL Scheme
可以从外部浏览器直接唤起小程序。测试下来,iPhone在浏览器上会有一个弹窗是否打开微信,安卓可以直接唤起微信。
<template>
<div class="home">
<div>
<div class="test" @click="showWechat()">打开微信</div>
<div class="test" @click="showWechatMINI()">打开微信小程序</div>
</div>
</div>
</template>
<script>
export default {
name: 'Wechat',
methods: {
async showWechat() {
window.location.href='weixin://'
},
showWechatMINI() {
window.location.href = 'weixin://dl/business/?t=U5XwKwnGjpk'
}
}
}
</script>
<style lang="scss" scoped>
.test {
width: 100%;
height: 100px;
background: orange;
margin: 10px 0;
font-size: 30px;
display: flex;
justify-content: center;
align-items: center;
color: white;
}
</style>
生成URL 配置地址获取
URL Scheme
地址,直接从小程序的MP后台,工具,可以直接生成。分永久有效和到期时期失效两种。