摘要: 初始化 componentDidMount 更新 componentDidUpdate 销毁 componentWillUnmount 电子时钟: class Clock extends React.Component{ constructor(props){ super(props) this.s 阅读全文
posted @ 2020-10-30 17:15 氧化成风 阅读(69) 评论(0) 推荐(0)
摘要: import React from 'react'; class Likes extends React.Component{ constructor(props){ super(props) this.state = { likes: 0 } // this.increaseLikes = thi 阅读全文
posted @ 2020-10-30 16:58 氧化成风 阅读(198) 评论(0) 推荐(0)
摘要: react 中使用 bootstrap: 安装: npm install bootstrap --save 引入: import 'bootstrap/dist/css/bootstrap.min.css'; (在index.js中引入) NameCard 组件: NameCard.jsimport 阅读全文
posted @ 2020-10-30 16:48 氧化成风 阅读(65) 评论(0) 推荐(0)
摘要: 安装: npm install create-react-app -g create-ract-app my-project 组件: 组件welcom.jsimport React from 'react'; class welcome extends React.Component{ render 阅读全文
posted @ 2020-10-30 14:47 氧化成风 阅读(138) 评论(0) 推荐(0)