app分享小程序后小程序跳会app点击允许后报错
- 需求的场景描述(希望解决的问题)
app分享出小程序(开发版)后,打开小程序点击button 提示即将离开微信打开app是否允许 点击允许后报错
报错信息为:launchApplication: fail launchApplicaiton failed
- 希望提供的能力
不太清楚到底哪里出了问题
<button class=‘cell_btn’ catchtap=‘startConference’ open-type=“launchApp” app-parameter=“测试信息” binderror=“launchAppError”>开始</button>
startConference:function(e){
console.log(‘跳app======:’ + value);
},
/*
app-parameter=“wechat” binderror="launchAppError
*/
launchAppError:function(e){
let value = e.detail.errMsg;
console.log(‘跳app报错======:’ + value);
},