react-tutorial icon indicating copy to clipboard operation
react-tutorial copied to clipboard

React 入门教程 http://hulufei.gitbooks.io/react-tutorial/

Results 5 react-tutorial issues
Sort by recently updated
recently updated
newest added

https://hulufei.gitbooks.io/react-tutorial/content/dom.html Refs 小节中 class App extends Component { constructor() { return { userInput: '' }; } 这里应改为 constructor(props) { super(props) this.state = { userInput: '' } }

坦白讲,到目前为止我只看了前面一部分。 但,即使如此,你的才华已经喷向我了 写法、语言和内容的组织都非常好。 人才!!!

> Webpack 使用一个名为 `webpack.config.js` 的配置文件,要编译 JSX,先安装对应的 loader: `npm install babel-loader --save-dev` 在我的环境下是 `npm install babel-loader babel-core --save-dev`, 不然执行 `webpack -d --watch` 会报找不到 babel-core 的错误.

这样就更能知道按什么顺序阅读。