我正在开发一个带有 Typescript、React 和 Redux(都在 Electron 中运行)的项目,当我在另一个组件中包含一个基于类的组件并尝试在它们之间传递参数时遇到了问题。粗略地说,我的容器组件具有以下结构:
class ContainerComponent extends React.Component<any,any> {
..
render() {
const { propToPass } = this.props;
...
<ChildComponent propToPass={propToPass} />
...
}
}
....
export default connect(mapStateToProps, mapDispatchToProps)(ContainerComponent);
和子组件:
interface IChildComponentProps extends React.Props<any> {
propToPass: any
}
class ChildComponent extends React.Component<IChildComponentProps, any> {
...
}
....
export default connect(mapStateToProps, mapDispatchToProps)(ChildComponent);
显然,我只包括基础知识,这两个类还有更多内容,但是当我尝试运行看起来像有效代码的代码时,我仍然遇到错误。我得到的确切错误:
TS2339: Property 'propToPass' does not exist on type 'IntrinsicAttributes & IntrinsicClassAttributes<Component<{}, ComponentState>> & Readonly<{ childr...'.
当我第一次遇到错误时,我认为这是因为我没有传入定义我的props的界面,但是我创建了它(如您所见),但它仍然不起作用。我想知道,有什么我想念的吗?
当我从 ContainerComponent 的代码中排除 ChildComponent props时,它呈现得很好(除了我的 ChildComponent 没有关键props)但在 JSX Typescript 中使用它拒绝编译它。我认为这可能与基于这篇文章的连接包装有关,但是那篇文章中的问题出现在 index.tsx 文件中,并且是提供程序的问题,我在其他地方遇到了我的问题。