在微信开发者工具中点击有弹窗提示,即将离开微信,打开其他应用,但是在真机上,点击按钮没有任何反应,请问这种情况是什么问题?
<wx-open-launch-app class="launch-btn" id="${video.id}"
appid="xxxxxxx" extinfo="${video.id}">
<script type="text/wxtag-template">
<style>
.VI-con {
width: 100%;
}
.vI-conImg {
width: 100%;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.vI-conImg-img {
width: 100%;
height:100%;
object-fit: cover;
}
.VI-con-d {
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 14px;
color: rgba(133, 133, 133, 1);
}
</style>
<div class="VI-con">
<div class="vI-conImg">
<img class="vI-conImg-img" th:src="${noitce.ossUrl+video.c
</div>
<div class="VI-con-d" th:text="${video.cTitle}"></div>
</div>
</script>
</wx-open-launch-app>
wx.config({
debug: true,
appId: [[${ data.appId }]], // 必填,公众号的唯一标识
timestamp: [[${ data.timestamp }]], // 必填,生成签名的时间戳
nonceStr: [[${ data.nonceStr }]], // 必填,生成签名的随机串
signature: [[${ data.signature }]],// 必填,签名
jsApiList: ["updateAppMessageShareData", "updateTimelineShareData"], // 必填,需要使用的JS接口列表
openTagList: ["wx-open-launch-app"] // 可选,需要使用的开放标签列表,例如['wx-open-launch-app']
});
wx.ready(function () {
console.log("已经准备好")
});
debug也提示配置正确
微信开发者工具点击按钮,已经有提示信息
但是在真机上,点击之后,没有任何提示,请问这种情况是什么问题?
还有就是这个如果不满足的话,具体是什么效果,是点击没反应,还是会提示跳转失败