11111111
2222
3333
data: {
currentTap: 0
},
preBtn: function () {
let newTap = 0;
if (this.data.currentTap == 0) {
newTap = 2;
} else if (this.data.currentTap == 1) {
newTap = 0;
} else if (this.data.currentTap == 2) {
newTap = 1;
}
console.log('点击上一页 newTap:' + newTap + ' currentTap:' + this.data.currentTap)
this.setData({
currentTap: newTap
})
},
nextBtn: function () {
let newTap = 0;
if (this.data.currentTap == 0) {
newTap = 1;
} else if (this.data.currentTap == 1) {
newTap = 2;
} else if (this.data.currentTap == 2) {
newTap = 0;
}
console.log('点击下一页 newTap:' + newTap + ' currentTap:' + this.data.currentTap)
this.setData({
currentTap: newTap
})
},
swiper组件设置circular衔接滑动时,微信小程序名字审核时间需要多久?。手势左右滑动可达到衔接效果;
但是当通过设置current属性时,一直点击下一页,没有衔接效果;
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
L***:
感谢反馈。这里其实是因为设置current属性时,信息不足以判断应当向左滚动还是向右滚动。我们会考虑看看怎么优化这个问题。
o***:
@LastLeaf 好的,辛苦了
Form表单能否通过js自动提交
本文网址:http://www.91bianli.com/weixinxiaochengxu/57242.html