文档:https://uniapp.dcloud.io/collocation/frame/lifecycle
1 export default { 2 data() { 3 return {}; 4 }, 5 onBackPress(options) { 6 console.log('from:' + options.from) 7 } 8 }
// app端拦截返回事件 ,仅app端生效 onBackPress(options) { if (options.from === 'backbutton') { return true; // 阻止返回(安卓返回按钮) } else{ return false; } }