仍在缠绕我的头部反应及其神秘的方式。在jQuery + HTML中,可能有一个元素<ListView> </ListView>
,后来由生成<Item>
的for循环填充。同样在角度你只需要重复。
这样做的反应方式是什么?我以前有这个工作,当我有一个<ListView items={listItems}></ListView>
listItems被定义为listItems = {heading:"qwerty", label:"test"}
等,但现在当我检查执行代码时,我看到创建的每个<Item>
都是'ReactElement'类型,因此不支持使用该行为。
任何想法都将不胜感激!感谢。
更新的代码:
render:function(){
//Do the rendering
var listViewItemsToRender = this.state.ListViewItems.map((item) => {
return (
<Item><div style={itemContainerParent}> <div style={itemPlatform}> <h1>props.platform</h1> </div><div style={routeInfo}><h1>props.routeInfo</h1></div><div style={timeInfo}><div style={row}><p>props.timeArriving</p></div><div style={row}><p>props.timeLeaving</p></div></div></div></Item>
)
});
return (
<Page>
<BannerHeader theme="prime" key="header" flex={0} textAlign="center">Train Times</BannerHeader>
<h2>{this.state.subheading}</h2>
<Container>
<Padding>
<BasicSegment>
<ButtonGroup fluid>
<Button onClick={this.showDepartures} variation={this.state.departuresSelected}>Departures</Button>
<Button onClick={this.showArrivals} variation={this.state.arrivalsSelected}>Arrivals</Button>
</ButtonGroup>
<Listview items={listViewItemsToRender}></Listview>
</BasicSegment>
</Padding>
</Container>
</Page>
);
}
答案 0 :(得分:0)
记住,reactjs是无法正确的数据流。所以你处理数据,ui会根据你的修改做出反应...... 所以你的渲染方法就是循环的地方......
在渲染处理程序方法中,你会有类似......
的东西 SELECT * from COUNTRY t
WHERE EXISTS(SELECT 1 FROM PERSON s
WHERE t.PERSON_REGION_ID = s.PERSON_REGION_ID
AND PERSON_ID IN ( 111, 888)
GROUP BY PERSON_REGION_ID
HAVING COUNT(DISTINCT PERSON_ID) = 2)
AND COUNTRY_ID = 44
看看reactjs todo exmple,它显示了包含单个项目的列表
https://github.com/tastejs/todomvc/tree/master/examples/react
......这可能有所帮助。