この記事の内容は、小さなプログラムの開発における左スワイプ削除ページ (コード例) に関するものです。必要な方は参考にしていただければ幸いです。
最初に 2 つの点を宣言します。
アイデアとコードはデータに基づいて修正および補足されます。元のアドレスはここです#。
ページ パーツ
ページには、通常のループ出力データに加えて、バインディングtouch## を追加する必要はありません。 # 件のイベント。 <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><view wx:for="{{array}}">
<view bindtouchstart="touchS" bindtouchmove="touchM" bindtouchend="touchE" style="{{item.txtStyle}}" data-index="{{index}}">
<!-- 省略数据 -->
</view>
<view catchtap="delOrder" data-index=&#39;{{index}}&#39; data-order_id=&#39;{{item.order_id}}&#39;>删除</view>
</view></pre><div class="contentsignin">ログイン後にコピー</div></div>
バインドされたタッチ イベントに従って、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 中国語 Web サイトの他の関連記事を参照してください。