app 调起小程序体验版 , 小程序返回app时, 通过button 的 bindlaunchapp 事件调用 wx.exitMiniProgram(), 返回app后,小程序未关闭,代码如下:
closeModal () {
wx.exitMiniProgram({
success: function(res) {},
fail: function(err) {
console.log('返回app时,发现走这里')
}
});
}
<button open-type="launchApp" bindlaunchapp="closeModal" app-parameter="{{payResult}}" binderror="launchAppError">返回APP</button>