摘要: 1.创建变量 const [loading, setLoading] = useState<boolean>(false); const [error, setError] = useState<string>() 2.useEffect钩子控制变量值的变化 useEffect(() => { co 阅读全文
posted @ 2022-02-24 15:51 黑蛋的博客 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 参考:https://zh-hans.reactjs.org/docs/hooks-intro.html 概念理解 Hook 是 React 16.8 的新增特性。它可以让你在不编写 class 的情况下使用 state 以及其他的 React 特性。 (生命周期只存在于类组件中,hooks可以使函 阅读全文
posted @ 2022-02-24 14:45 黑蛋的博客 阅读(112) 评论(0) 推荐(0) 编辑