React 中 refs 的作用
摘要:Refs 是 React 提供给我们的安全访问 DOM 元素或者某个组件实例的句柄。我们可以为元素添加 ref 属性然后在回调函数中接受该元素在 DOM 树中的句柄,该值会作为回调函数的第一个参数返回: class CustomForm extends Component { handleSubmi
阅读全文
React框架
摘要:搭建React框架: $ cnpm install -g create-react-app $ create-react-app my-app $ cd my-app/ $ npm start
阅读全文