我有3张桌子
所有这三个表都使用另一个表'template'的主键。
现在,我想从其中使用“templateId”的所有三个表中获取记录数。
答案 0 :(得分:0)
你的意思是这样的:
render: function(){
var rows = this.props.value.map(function(row) {
//Add props to your LiComponent just as you would normally.
return <LiComponent />;
});
return (
<div style={style}>
{rows}
</div>
);
}