uniapp 禁止手机单页面侧滑返回(IOS禁止侧滑)

公司需求在监测心率时没有结束就不能退出页面,搜了很多IOS都没有效果,下边是我亲测IOS单页面使用有效

安卓方法:

export default {

        data() {
			return {
				canLeave: false
			}
		},
        onBackPress() {
		      if (this.canLeave) {
		       // 当可以离开时,不阻止页面后退
		           return false;
		        } else {
		              // 当不可离开时,弹出提示
		              uni.showModal({
		              title: '提示',
		              content: '是否确定退出当前页面?',
		              success: res => {
		                if (res.confirm) {
		                   // 用户点击确定
		                  this.canLeave = true;   // 允许离开
		                  uni.navigateBack();  // 执行页面后退操作
		              }
		          }
		      });
		    // 阻止默认的页面后退
		    return true;
		}
	},
}

这个方法适用于安卓和ios点击返回键返回时调用的

IOS侧滑我是直接在pages.json中关闭侧滑的,刚好符合我的需求

{
			"path": "pages/Equipment/smartWatches/heart-rate/index",
			"style": {
				"navigationBarTitleText": "心率测量",
				"navigationBarBackgroundColor": "#1E212E",
				//禁止滑动返回
				"disableSwipeBack": true,
				//禁止上下滑动
				"disableScroll": true
			}
		},

uniapp禁止侧滑可以通过在pages.json文件中的style属性中设置"disableSwipeBack": true来实现。具体的配置如下所示: ```json { "path": "pages/chat/index", "style": { "disableSwipeBack": true } } ``` 此配置将禁止在该页面中进行侧滑返回操作。\[1\] 另外,你也可以在manifest.json文件中的plus节点下配置"popGesture": "none"来禁止响应左滑动画。具体配置如下所示: ```json "plus": { "popGesture": "none" } ``` 这样配置后,整个uniapp项目都将禁止侧滑返回操作。\[2\] 如果你只想在页面禁止侧滑返回,可以使用以下代码: ```javascript // #ifdef APP-PLUS let pages = getCurrentPages(); let page = pages\[pages.length - 1\]; let currentWebview = page.$getAppWebview() currentWebview.setStyle({ popGesture: 'none' }) // #endif ``` 这段代码将禁止当前页面侧滑返回操作。\[2\] 你可以参考uniapp官方文档中的manifest.json配置和5+ API调用来获取更多关于禁止侧滑的信息。\[3\] #### 引用[.reference_title] - *1* [亲测,解决uni-app禁止IOS侧滑“popGesture“: “none“ 失效](https://blog.csdn.net/weixin_44668640/article/details/125678133)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [uniapp怎么关闭侧滑](https://blog.csdn.net/dct1130/article/details/117076219)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [uniapp禁止页面侧滑返回](https://blog.csdn.net/qq_31754523/article/details/107456335)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值