index.wxml内容
<block wx:for="{{houseList}}" wx:for-item=“house”>
<view catchtap="goHouseDetail" data-houseId="{{house.id}}>
<template is="my-item-template" data="{{...house}}"/>
</view>
</block>
注:<block></block> 并不是一个组件,它仅仅是一个包装元素,不会在页面中做任何渲染,只接受控制属性。
------------------------------------------------------------------------------
index.js
goHouseDetail:function(e){
var houseId = e.currentTarget.dataset.houseId;
console.log(houseId);
wx.navigateTo({
url: '../house/house-detail/detail?id=' + houseId;
})
}
网友评论