handleError(err) {
console.log(err)
console.log(err.detail)
uni.showToast({
title: `失败了,${err.detail}`,
icon: 'none',
duration: 3000,
})
},
<view class="fixed bottom-0 left-0 py-4 center w-full bg-red-600">
<wx-open-launch-app
style="width: 100%; height: 100px; background: chocolate"
@error="handleError"
@launch="handleLaunch"
appid="wx**********"
:extinfo="extinfo"
>
<script type="text/wxtag-template">
<text>script按钮</text>
<button style="border: none; background-color: blue; width: 280px; height: 50px; min-width: 280px" @click="closePoint">打开scriptAPP</button>
</script>
<template>
<text>template按钮</text>
<button style="border: none; background-color: blue; color: white; width: 280px; height: 50px; min-width: 280px" @click="closePoint">
打开templateAPP
</button>
</template>
</wx-open-launch-app>
但是微信开发者工具公众号网页 点击预览 扫描二维码打开的链接,点击按钮后可以正常打开APP,所以应该不是appid的问题
------
我手机是安卓的,使用测试的IOS手机点击链接也是同样的情况,所以也不是安卓的问题,所以到底是什么问题?
把网页收藏,从收藏里面打开链接,就能跳转了