在我的nextjs
-app中,我有Navbar
-组件,在这里我把菜单项作为一个道具传递:
<Navbar navitems={navigationItems} />
navigationItems
是一个对象数组。
那么在Navbar
-分量中我有这样的:
export interface INavBarItem {
id: string;
text: string;
path: {
slug: string;
};
}
export type INavBar = INavBarItem[];
const Navbar: React.FC<INavBar> = ({ navitems }) => { ... }
现在我得到错误Type error: Type '{ navitems: any; }' is not assignable to type 'IntrinsicAttributes & INavBar'.Property 'navitems' does not exist on type 'IntrinsicAttributes & INavBar'.
我做错了什么?
2条答案
按热度按时间h79rfbju1#
2g32fytz2#
这是打字脚本,因此您需要显式键入您的道具。
无法从INavBar反结构化导航项,因为它不是INavBar的属性。如果要反结构化道具,则需要使用道具类型中存在的属性的名称。
但错误在于,您不能将any类型作为props传递给组件。