赞
踩
全局禁止手机侧滑返回方法:
打开manifest.json,找到app-plus下配置 "popGesture": "none"。
"app-plus": { "popGesture": "none" }
以下方法适用于单页面
踩坑第一种方法:(完全不生效)
- {
- "path": "pages/train/exam/test", // 教育培训-考试
- "style": {
- "navigationStyle": "custom",
- "app-plus": {
- "popGesture": "none"
- }
- }
- },
第二种方法:与onLoad同级写一个onBackPress()方法。(亲测有效,记录一下)
第三种办法:ios可以尝试以下两种方法(据粉丝反应第二种方法ios不生效,由于本人没有苹果手机,无法测试)
- // #ifdef APP-PLUS
-
- plus.webview.currentWebview().setStyle({ 'popGesture': 'none'});
-
- // #endif
第四种办法:
- // #ifdef APP-PLUS
-
- let page = this.$mp.page.$getAppWebview();
-
- page.setStyle({ popGesture: 'none' });
- // #endif
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。