React Native 第五天

Posted nerverlate

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React Native 第五天相关的知识,希望对你有一定的参考价值。

React Redux

  • 容器组件:一个容器查找数据并且渲染它相对应的子组件。相对应 意为 拥有相同名字的组件。比如:

StockWidgetContainer => StockWidget

TagCloudContainer => TagCloud

PartyPooperListContainer => PartyPooperList

2.我们有一个组件

class CommentList extends React.Component {

this.state = { comments: [] };

 

componentDidMount() {

fetchSomeComments(comments =>

this.setState({ comments: comments }));

}

render() {

return (

<ul>

{this.state.comments.map(c => (

<li>{c.body}{c.author}</li>

))}

</ul>

);

}

}

以上是关于React Native 第五天的主要内容,如果未能解决你的问题,请参考以下文章

第五天

nacos1.1.4源码第五天 ap的实现

python第五天

python第五天

团队第二次冲刺第五天

个人冲刺——第五天