关于页面上不显示name和age的解决办法:在A中给WrappedComponent加上继承属性,即:<WrappedComponent {...this.props} />
2020-03-09
create-react-app: command not found
直接替换create-react-app为npx create-react-app
直接替换create-react-app为npx create-react-app
2019-12-30
react 官方文档已经不推荐这种继承方式的高阶组件了,不应改变原始组件,而应该使用组合(即代理)的方式。具体原因见:
https://zh-hans.reactjs.org/docs/higher-order-components.html
https://zh-hans.reactjs.org/docs/higher-order-components.html
2019-09-05
要分别在b c 组件引入a组件,在导出的时候 export default B 改成export default A(B)和redux的connect差不多~
2019-08-09