【TS】【react】如何正确定义对象数组
interface ContentTableBizType {
text: string;
value: string;
}
// react
const [bizType, setBizType] = useState<ContentTableBizType[]>([]);
// 初始化
useEffect(() => {
// 获取业务类型
const bizType: ContentTableBizType[] = [
{ text: 'xxx', value: 'male' },
{ text: 'xxx', value: 'female' },
];
setBizType(bizType);
}, []);