uni-app为啥跳转打开该页面后还能侧滑返回上一个页面?
uni-app为啥跳转打开该页面后还能侧滑返回上一个页面?
{
"path": "pages/findPeple/ersonDetail",
"style": {
"navigationStyle": "custom", // 自定义顶部导航栏
"navigationBarTitleText": "",
"app-plus": {
"titleNView": false,
"popGesture": "none"
},
"disableScroll": true // 是否禁止页面滚动
}
}
更多关于uni-app为啥跳转打开该页面后还能侧滑返回上一个页面?的实战教程也可以访问 https://www.itying.com/category-93-b0.html
3 回复
需要禁用物理返回
onBackPress(options) {
if (options.from === ‘backbutton’) {
return true;
}
}
更多关于uni-app为啥跳转打开该页面后还能侧滑返回上一个页面?的实战教程也可以访问 https://www.itying.com/category-93-b0.html