最新回答 / 慕九州0567575
首先创建一个新的React项目
npx create-react-app my-app在src文件夹下单独建立一个js文件,把每一个组件封装成一个类,将需要在其他文件引用的类用<...code...>命名导出,进行引用就可以了。<...code...><...图片...>
2019-07-16
最新回答 / qq_慕哥5037448
timerTriker = () =>{this.setState({strikes:this.state.strikes+100})}componentDidMount = () => {setInterval(this.timerTriker,1000)}解决了 没有绑定 这2个方法这样写 就可以了
2019-05-22
npx create-react-app first-app
cd first-app
npm start
官网的例子不用的吗?
不用安装全局,解决版本问题,美滋滋。
cd first-app
npm start
官网的例子不用的吗?
不用安装全局,解决版本问题,美滋滋。
2019-04-30
最赞回答 / pinzaghi
在浏览器中输入https://cdn.staticfile.org/react/16.4.0/umd/react.development.js https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js https://unpkg.com/babel-standalone@6.15.0/babel.min.js 这三个地址,将得到的页面全选后复制粘贴到本地的文件中,分别对应react.js、react-dom.js和br...
2019-03-15
这样写好像没有灵魂。
yarn global add create-react-app
create-react-app first-app
cd first-app
yarn start
yarn global add create-react-app
create-react-app first-app
cd first-app
yarn start
2019-03-02
react16.7+react-router4.3+typescript项目:
https://github.com/BUPTlhuanyu/react-music-lhy
https://github.com/BUPTlhuanyu/react-music-lhy
2019-02-15