react第一堂课

学过angular2 react初看起来和angular有点相识之处

react工程的构建

全局安装 npm install -g create-react-app

构建工程  create-react-app first

进入工程 cd first

启动工程 npm start    默认3000端口  地址栏:http://localhost:3000

 

遇到的第一个坑:

  Line 50:  Expected an assignment or function call and instead saw an expression  no-unused-expressions
  
<ul>
 {this.state.posts.map(item =>{----->
                        <PostItem
                        post = {item}
                        onVote = {this.handleVote}
                        />-------->
                    )} 
</ul>

jsx中不能有{}?

posted @ 2018-11-28 22:54  就一个代号  阅读(79)  评论(0编辑  收藏  举报