摘要: 高阶组件(HOC)是 React 中用于复用组件逻辑的一种高级技巧。 1. 简单用法 import React, { Component } from "react"; const withMouse = (AppComponent) => { class HOC extends Component 阅读全文
posted @ 2021-03-30 11:42 Mr.曹 阅读(253) 评论(0) 推荐(0) 编辑