乐趣区

小程序开发:左滑删除

导语
首先声明两点:

思路以及代码,是根据资料进行一些修改以及补充,原文地址在此

下面的只是 demo,各位根据自己的需要进行修改完善

实现的思路摘抄如下
1,首先页面每个 item 分为上下两层,上面一层放置正常内容,下面一层放置左滑显示出的按钮,这个可以使用 z -index 来实现分层。2,item 上层使用绝对定位,我们操纵 left 属性的值来实现像左移动。
3,我们通过微信小程序 api 提供的 touch 对象和 3 个有关手指触摸的函数(touchstart,touchmove,touchend)来实现 item 随手指移动。

页面部分
在页面中没有太复杂的逻辑,除了正常的循环输出数据,需要添加绑定 touch 事件。
<view wx:for=”{{array}}”>
<view bindtouchstart=”touchS” bindtouchmove=”touchM” bindtouchend=”touchE” style=”{{item.txtStyle}}” data-index=”{{index}}”>
<!– 省略数据 –>

</view>
<view catchtap=”delOrder” data-index='{{index}}’ data-order_id='{{item.order_id}}’> 删除 </view>
</view>
JS 部分
JS 中根据绑定的 touch 事件触发删除按钮,用户点击删除,发送请求,根据返回值对用户进行反馈。
Page({

/**
* 页面的初始数据
*/
data: {
array:[],
delBtnWidth: 150// 删除按钮宽度单位(rpx)
},

/**
* 手指触摸开始
*/
touchS: function (e) {
// 判断是否只有一个触摸点
if (e.touches.length == 1) {
this.setData({
// 记录触摸起始位置的 X 坐标
startX: e.touches[0].clientX
});
}
},

/**
* 手指触摸滑动
*/
touchM: function (e) {
var that = this;
if (e.touches.length == 1) {
// 记录触摸点位置的 X 坐标
var moveX = e.touches[0].clientX;
// 计算手指起始点的 X 坐标与当前触摸点的 X 坐标的差值
var disX = that.data.startX – moveX;
//delBtnWidth 为右侧按钮区域的宽度
var delBtnWidth = that.data.delBtnWidth;
var txtStyle = “”;
if (disX == 0 || disX < 0) {// 如果移动距离小于等于 0,文本层位置不变
txtStyle = “left:0px”;
} else if (disX > 0) {// 移动距离大于 0,文本层 left 值等于手指移动距离
txtStyle = “left:-” + disX + “px”;
if (disX >= delBtnWidth) {
// 控制手指移动距离最大值为删除按钮的宽度
txtStyle = “left:-” + delBtnWidth + “px”;
}
}
// 获取手指触摸的是哪一个 item
var index = e.currentTarget.dataset.index;
var list = that.data.array;
// 将拼接好的样式设置到当前 item 中
list[index].txtStyle = txtStyle;
// 更新列表的状态
this.setData({
array: list
});
}
},

/**
* 手指触摸结束
*/
touchE: function (e) {
var that = this;
if (e.changedTouches.length == 1) {
// 手指移动结束后触摸点位置的 X 坐标
var endX = e.changedTouches[0].clientX;
// 触摸开始与结束,手指移动的距离
var disX = that.data.startX – endX;
var delBtnWidth = that.data.delBtnWidth;
// 如果距离小于删除按钮的 1 /2,不显示删除按钮
var txtStyle = disX > delBtnWidth / 2 ? “left:-” + delBtnWidth + “px” : “left:0px”;
// 获取手指触摸的是哪一项
var index = e.currentTarget.dataset.index;
var list = that.data.array;
list[index].txtStyle = txtStyle;
// 更新列表的状态
that.setData({
array: list
});
}
},

/**
* 删除订单
*/
delOrder: function (e) {
var order_id = e.currentTarget.dataset.order_id;
var index = e.currentTarget.dataset.index;
var that = this;
// 请求接口
wx.request({
url: ‘xxxx’,
data: {
order_id: order_id
},
success: function (res) {
if (res.data.message == ‘success’) {
// 删除成功
that.delItem(index)
} else if (res.data.message == ‘error’) {
// 删除失败
}
},
fail: function () {
// 网络请求失败
}
})
},

/**
* 删除页面 item
*/
delItem: function (index) {
var list = this.data.array
list.splice(index, 1);
this.setData({
array: list
});
}
})

参考资料:微信小程序左滑删除效果的实现、touch 事件。

退出移动版