从APP跳向小程序,如何从小程序中返回APP同时也关掉小程序?
需求:从APP中跳向小程序,完成业务操作后需要返回APP,同时也关闭小程序; 现状:目前可以从小程序返回 APP,但无法关闭小程序; 组件及代码: <button size="small" open-type="launchApp" class="backHome" app-parameter="wechat"
bindlaunchapp="handleExit" binderror="bindErrorHandler">
handleExit:()=> {
wx.exitMiniProgram({
success: ()=> {
console.log('exit success...')
},
fail: ()=> {
console.log('exit error...')
wx.navigateTo({
url: '/pages/index/index',
})
}
})
}