摘要:
前言 本文代码浅显易懂,思想深入实用。此属于react进阶用法,如果你还不了解react,建议从文档开始看起。 我们都知道高阶函数是什么, 高阶组件其实是差不多的用法,只不过传入的参数变成了react组件,并返回一个新的组件. A higher-order component is a functi 阅读全文
摘要:
没有嵌套关系的组件(如兄弟组件)之间的通信,只能通过自定义事件的方式来进行。 var EventEmitter = require('events').EventEmitter; import React,{Component} from 'react'; import ReactDOM from 阅读全文
摘要:
[转载]Shared mutable state is the root of all evilShared mutable state is the root of all evil(共享的可变状态是万恶之源)-- Pete Hunt有人说 Immutable 可以给 React 应用带来数十倍的提升,也有人说 Immutable 的引入是近期 JavaScript 中伟大的发明,因为同期 R... 阅读全文
摘要:
转载babel-preset-env is a new preset that lets you specify an environment and automatically enables the necessary plugins. 1. The problemAt the moment, several presets let you determine what features ... 阅读全文