uniapp如何實現返回監聽 (物理)


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

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM