위 챗 애플 릿 다 중 목록 렌 더 링 데이터 스위치 상호 영향 없 는 구현
4273 단어 애플 릿다 중 목록 렌 더 링
<!--pages/list/list.wxml-->
<wxs src="../../utils/filter.wxs" module="filter" />
<view class="list">
<view wx:for="{{list}}" wx:key="{{index}}" class="ban" data-main='{{index}}'>
<view class="time">{{filter.replaceStar(index)}}</view>
<view wx:for="{{item}}" wx:key="*this" class="cen ovf" data-id='{{item.id}}' data-index='{{index}}' >
<navigator url="../details/details?id={{item.id}}" open-type="navigate" class="ovf item_1">
<view>
<view class="name">{{item.ymname}}</view>
<view class="msg">{{item.ymms}}</view>
</view>
</navigator>
<view class="check ovf">
<view id="jl" bindtap='cancle' wx:if="{{item.seleced==1}}" data-fid='{{item.fid}}' data-id='{{item.id}}' data-index='{{index}}'> </view>
<picker mode="date" data-id='{{item.id}}' data-index='{{index}}' data-fid='{{item.fid}}' bindchange="bindDateChange" bindcancel="bindcancel" class="item_2" name="picker" wx:if="{{item.seleced!=1}}">
<view id="jl" bindchange="checkboxChange" value='{{date}}'> </view>
</picker>
<view class="zi" wx:if="{{item.seleced==1}}">{{item.time}}</view>
</view>
</view>
</view>
</view>
<view class="fix" bindtap='wait'>
<text>
</text>
</view>
// pages/list/list.js
const app = getApp()
var time =''
Page({
data: {
id:0,
list: [],
date:'',
tr:'',
s:''
},
//
// bindcancel:function (e) {
// var that = this
// console.log(e.target.dataset.id)
// that.setData({
// tr: 1,
// })
// },
bindDateChange:function (e) {
console.log('picker , ', e.detail.value)
time = e.detail.value
var that = this
var arr = that.data.list
var index = e.target.dataset.index
var index1 = e.target.dataset.fid
arr[index1][index].seleced = 1
arr[index1][index].time = e.detail.value
that.setData({
id: e.target.dataset.id,
date: time,
list: arr
})
},
cancle:function (e) {
var that = this
var arr = that.data.list
var index = e.target.dataset.index
var index1 = e.target.dataset.fid
arr[index1][index].seleced = ''
that.setData({
id: e.target.dataset.id,
list: arr
})
},
wait:function () {
wx.navigateTo({
url: '../wait/wait'
})
},
lis: function () {
wx.navigateTo({
url: '../archives/archives'
})
},
onLoad: function () {
var that = this
wx.request({
url: 'https://m.renyiwenzhen.com/xcx_ajax.php?action=yimiaolist', // ,
method: 'post',
header: {
'content-type': 'application/json' //
},
success(res) {
console.log(res.data)
that.setData({
list: res.data
})
}
})
}
})
요약:여기 서 이중 순환 을 사 용 했 는데 주의해 야 할 것 은 사용
wx:key='*this'
순환 자체 이다.사용
wx:if="{{item.seleced==1}}"
클릭 효 과 를 표시 하고 데이터 에 속성 을 사용자 정의 합 니 다.
arr[index1][index].seleced = 1
위 챗 애플 릿 의 다 중 목록 렌 더 링 데이터 스위치 가 서로 영향 을 주지 않 는 실현 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 애플 릿 의 다 중 목록 렌 더 링 이 서로 영향 을 주지 않 는 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 많은 응원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
애플 릿 이미지 새로 고침, nginx 재 작성 url 제거 인자이전에 nginx 로 이미지 서버 를 만 들 었 는데 전단 에 작은 프로그램 을 사 용 했 습 니 다. 작은 프로그램 이 출시 된 후에 그림 이 새로 고침 되 지 않 는 것 을 발 견 했 습 니 다. 조사 한 결과 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.