- wx.showModal点取消无法关闭?
wx.showModal({ title: '提示', content: '有未完成题目,是否提前交卷?', complete: (res) => { if (res.confirm) { console.log('用户点击确定') } else if (res.cancel) { console.log('用户点击取消') } } }) // 描述问题: 在点击取消后, 模态框依然存在?求解:如何关闭它? 点确认时可以关闭!
2023-01-10 - current 我在swiper ---> change 事件中 加入 setData({cur})
我在swiper ---> change事件中用setData({current : this.data.current +1 }) 的时候 ,界面划下一个item。突然一下子就滑到最后一个元素去了 。求解!!版本:2.29.0 <swiper style="height:{{windowHeight_rpx}}rpx; padding-top:15rpx ; " bindchange="changeSwiper" current="{{current}}"> data: { current:0,// 当前页 }, // 切换事件 changeSwiper(optins) { // console.log(optins.detail.currentItemId) this.setData({ current: this.data.current + 1 }) console.log("当前页是:"+this.data.current); },
2022-12-30