React技巧之将useState作为对象

2022-08-19 15:25:16 浏览数 (1)

原文链接:https://bobbyhadz.com/blog/react-type-usestate-object[1]

作者:Borislav Hadzhiev[2]

正文从这开始~

将useState作为对象

要在React中用一个对象来类型声明useState钩子,可以使用钩子泛型。比如说,const [employee, setEmployee] = useState<{name: string; salary: number}>({name: '',salary: 0}) 。state变量只接收特定类型的键值对。

代码语言:javascript复制
// App.tsx

import {useEffect, useState} from 'react';

const App = () => {
  // 


	

0 人点赞