绑定bindchange事件的微信小程序swiper闪烁,抖动问题解决,(将微信小程序切换到后台一段时间,再打开微信小程序,会出现疯狂循环轮播,造成抖动现象)

时间:2019-02-18 14:55:07   收藏:0   阅读:2936

技术图片

微信小程序开发文档-组件-swiper后面追加的新闻如上图所示;

如果在bindchange事件给swiper的current属性对应的值{{current}}赋值,就会造成抖动现象。

1   bindchangeSwiper(event) {
2     console.log(event.detail);
3     this.setData({
4       current: event.detail.current
5     })
6   },

可是有的时候我们确实需要动态获取当前的swiper-item索引,用来额外做一些其他操作;

为了解决这个问题,我们需要额外定义一个变量。

1     current: 0, // swiper初始对应的swiper-item
2     currentIndex: 0, // 用来记录当前swiper对应的索引index
1   bindchangeSwiper(event) {
2     this.setData({
3       currentIndex: event.detail.current
4     })
5   },

 

这样问题解决啦! 

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!