let str=JSON.stringify(e.currentTarget.dataset.item);wx.navigateTo({url: '../toMybaby/babyDetail/babyDetail?jsonStr='+str,success: function (res) {// success},fail: function () {// fail},complete: function () {// complete}}) onLoad:function(options){ // 生命周期函数--监听页面加载 l...
在点击图片的时候需要跳转到另一个页面的同时携带这个item.id,在另一个页面,这个item.id对应接口的请求参数,item.id不一样,接口返回的数据也不一样,我们需要根据返回的不同数据进行渲染。最终的效果就是点击上一个页面不同的图片,跳转到另一个页面显示不同的内容。 ⭐⭐⭐细节二:data-后面的东西叫参数名,...
data里有模拟的数组 itemleft itemright,二选一, 定义代码是这么写的 this.setData({ uniqueitem: (id =='unfinish') ?this.data.itemleft[index] :this.data.itemright[index], cloneitem: (id =='unfinish') ?this.data.itemleft[index] :this.data.itemright[index], baninput: (id =='unfinish')...
在微信小程序开发中数据与页面的绑定是靠data对象来实现的。如果要修改页面中某个变量的值,就需要使用this.setData({变量名:值})。 话不多说例子如下: test.wxml: <viewwx:for="{{ editData }}"wx:key="index"data-index="{{ index }}"><viewclass="list-item flex"><viewclass="left">收货人:</v...
<template is="post-item" data="{{...item}}" ></template> </view> </block> 这是js onPostTap: function (event) { var postId = event.currentTarget.dataset.postid; wx.navigateTo({ url: 'post-detail/post-detail?id='+postId,
<view>测项:{{item.checkItemName}}</view> </view> <!-- wx:if设置默认选中状态 --> <view class='list-button' wx:if='{{item.checkResult=="正常"}}'> 正常 异常 </view> <view class='list-button' wx:else> 正常
编码:{{item.equipCode}} 设备:{{item.equipName}} 测项:{{item.checkItemName}} 正常异常 正常异常 a.js Page({ data:{ dataList:[ {'equipCode':1001,'equipName':'打印机','checkItemName':'记录',checkResult:'正常'}, {'equipCode':1002,'equipName':'打印机','checkItemName':'记录',che...
<scroll-viewclass='hd-cont'scroll-x="true"style='width:100%'><viewwx:for="{{sDate}}"wx:key="{{index}}"class='date-cont'><view>{{item.week}}</view><viewbindtap='select'data-index="{{index}}"class='curl {{item.selected}}'>{{item.date}}</view></view></scroll-view> ...
0.2692022.07.26 15:22:12字数 19阅读 878 tab切换(动态修改data里数组的值) dom: <viewclass="{{ item.isChoose ? 'list_item' : 'special' }}"wx:for="{{ list }}"wx:key="id"bindtap="handleClick"data-index="{{ item.id }}">{{item.title}}</view> ...
data-post-id={{item.postId}} 2、在页面js文件中获取Id: const pid = event.currentTarget.dataset.Postid; xv.navigateTo({ url:'post-detail/posttail?pid=' + pid; }) 3、在另外页面接受参数ID 基于查询pid 在onLoad:funtion(options){ var pid = options.id; } 课程收获: 今日课程学...