이 글의 내용은 작은 프로그램 개발 시 페이지(코드 예시)를 삭제하기 위한 내용입니다. 도움이 필요한 친구들이 참고하시면 좋겠습니다.
우선 두 가지 점을 선언하겠습니다.
아이디어와 코드는 정보를 바탕으로 수정 및 보완되었습니다. 원래 주소는 여기입니다
다음은 단지 데모일 뿐입니다. 그리고 필요에 따라 개선하세요
구현 아이디어를 다음과 같이 발췌합니다
1. 먼저 페이지의 각 항목은 상위 레이어와 하위 레이어로 구분되며, 하위 레이어에는 일반 콘텐츠가 배치됩니다. 레이어는 왼쪽 슬라이딩으로 표시되는 버튼과 함께 배치됩니다. 이는 Z-인덱스를 사용하여 달성할 수 있습니다.
2. 항목의 상위 레이어는 왼쪽 속성의 값을 조작하여 왼쪽으로 이동시킵니다.
3. WeChat 애플릿 API에서 제공하는 터치 개체와 손가락 터치와 관련된 세 가지 기능(touchstart, touchmove, touchend)을 사용하여 손가락으로 항목이 움직이는 것을 구현합니다.
페이지 부분
페이지에는 일반적인 루프 출력 데이터 외에 바인딩 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는 바운드 터치 이벤트를 기반으로 삭제 버튼을 트리거하고, 요청을 보내고, 반환 값을 기반으로 사용자에게 피드백을 제공합니다.
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 }); } })
위 내용은 미니 프로그램 개발: 왼쪽으로 스와이프하여 페이지 삭제(코드 예시)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!