【uniapp】设置swiper组件禁止手动滑动失效的问题
短信预约 -IT技能 免费直播动态提醒
写uniapp项目有个跨多端平台的有点,但是要埋的坑比较多,这不有一个平台跨出现问题了,编译运行在微信小程序开发工具上会出现了,swiper组件设置禁止手动滑动失效的问题,接下来讲讲怎么解决
文章目录
1. 先看文档
uniapp官方文档介绍的 swiper 是这样写得属性说明,但有时会失效,看到这里挖个坑,来填了
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
disable-touch | Boolean | false | 是否禁止用户 touch 操作 |
touchable | Boolean | true | 是否监听用户的触摸事件,只在初始化时有效,不能动态变更 |
2. 尝试修改
在某自定义组件内有加了swiper
,又想要停止用户触摸滑动操作,加上catchtouchmove
属性后,代码如下
<template><swiper class="zs-tablet-box" active-class="swipter-active" :current="activeIndex" disable-touch="true" touchable="false" ><swiper-item class="box-item" catchtouchmove="onstoptouchmove"><view class="form"><view class="form-header"><text>设置text>view><view class="form-content"><scroll-view :scroll-y="true" :style="{height:(size-60)+'px'}"><view><slot>slot>view>scroll-view>view>view>swiper-item>swiper>template><script>export default {data(){return {size:300,activeIndex:0,}},//...methods:{onstoptouchmove(){return false;},}//...}script>
但是,这放在微信小程序上编译后会报出上面提到的错误,
...does not have a method "onstoptouchmove" to handle event "touchmove"
,究竟是什么意思呢,翻译过来是说触摸移动方法有问题
2. 解决方法
解决方法是这样的,在uniapp项目上只要在前面加上@
,还有,要符合Vue规范写法,应该替换成touchmove.stop
这样,在微信小程序上就不会报错了,果然有效,代码如下
<swiper-item class="box-item"><view class="form"><view class="form-header"><text>设置text>view><view class="form-content"><scroll-view :scroll-y="true" :style="{height:(size-60)+'px'}"><view><slot>slot>view>scroll-view>view>view>swiper-item>
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341