關於H5跳轉到小程序和android的方法

1,跳轉小程序需在H5頁面引入https://res.wx.qq.com/open/js/jweixin-1.3.2.js文件。html

html:小程序

<div class="ibutton" @click="handleSubmit()">一鍵發佈</div>

script: url

methods: {
        handleSubmit() {
            if (!window.gydsh) {//跳轉小程序
                wx.miniProgram.switchTab({url: '/pages/goods/goods_publish'});
                return;
            }
            window.gydsh.handlePublish();//跳轉安卓,gydsh是與安卓約定好的類。hanlepublish是與安卓約定好的方法名
    

        }
    }
相關文章
相關標籤/搜索