文檔: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;
}
}
