Wie gebe ich Requisiten in React TypeScript ein? Ich erhalte die Fehlermeldung „Property ‚authors‘ is not exist on type ‚[Props] & {children?: ReactNode;‘}‘.ts‘. Ich erwarte, dass mir ein Array übergeben wird, das aus Namens- und Passwortschlüsseln besteht.
https://codesandbox.io/s/test-login-page-tasks-24-04-forked-eg91s5?file=/src/components/Login.tsx:229-274
type Props = { authors: { name: string; password: string; }[]; }; const Login: FC<[Props]> = ({ authors }) => { return ( ... ) }
, auch wenn ich auf Requisiten verzichte.
您使用 IUser 类型定义了 IUser 接口并定义了名称、密码状态,这将导致问题,因为当您定义此时:
这是错误的,因为名称,密码是一个字符串,所以尝试这样定义它:
然后您必须修复将作者传递给 FC 组件的问题:
您必须修复此类型以匹配从 App.tsx 传递的数据类型的最后一件事:
并且您像这样从应用程序传递了它:
尝试将
[Props]
更改为Props
,如下所示现在它可以工作了,因为它需要对象而不是数组,我们将传递一个像
<Loginauthors={authors} />
这样的对象。现在,作者将是一个对象数组。