React学习笔记(大地老师)


#创建react应用

1. npm install create-react-app -g

html写在了哪个js文件中,就在哪个js文件中引入css。


react中引用静态资源也要使用模块化的方式,比如是不行的,要用import abc from '/img/a.jpg';

react组件中的方法不能直接调用this.state,必须绑定this后才可以

![image](http://upload-images.jianshu.io/upload_images/7538970-090df586b8ce482d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)


li当中要有key值

React学习笔记(大地老师)_第1张图片

你可能感兴趣的:(React学习笔记(大地老师))