微信小程序怎么 点击获取循环中的内容获取?
点击获取到对应的数组内容
数组结构:
{
date: "2018-03-13",
z_num: "450",
m_num: "6",
money: "3956.67",
id: 13,
line: [{
placeholder: "在线收益",
item_unm: "2000.60",
num: 1
}, {
placeholder: "现金收益",
item_unm: "400.00",
num: 1
}, {
placeholder: "退款金额",
item_unm: "1565.07",
num: 1
}]
},
js:
bindDate:function(e){
var that = this;
var datas = that.data.datas;
var id = e.currentTarget.dataset.id;
for (let i in datas){
var datdId = datas[i][id].line;
that.setData({
line: datdId
})
}
console.log(id);
that.getTotalPrice();
},
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
https://github.com/Liuniuliu/...
已经放入github
可以通过data- 属性把数据通过点击事件一起传过去。
也是通过传个index,找到对应数据!
http://callmesoul.cn/
wx:for
<view data-index='{{index}}' data-value='{{item.placeholder}}>
</view>
index 索引 传值可以传Array或是Object等 类型