gpt4 book ai didi

reactjs - 未捕获的类型错误 : Cannot read property 'func' of undefined

转载 作者:行者123 更新时间:2023-12-03 13:56:07 24 4
gpt4 key购买 nike

我正在使用 propTypes func,只有当我运行应用程序时才会出现错误

运行后:> npm run watch

我没有任何错误,一切似乎都很“完美”。但是当我运行该应用程序时,出现以下错误:

Uncaught TypeError: Cannot read property 'func' of undefined

这是使用过的代码片段,但仍然不明白为什么会出现此错误。

PlanFinder.propTypes = {
onClickBubbles: React.propTypes.func,
}

最佳答案

另外,这是 official note :

React.PropTypes has moved into a different package since React v15.5. Please use the prop-types library instead.

示例:

import PropTypes from 'prop-types';

class Greeting extends React.Component {
render() {
return (
<span>Hello, {this.props.name}</span>
);
}
}

Greeting.propTypes = {
name: PropTypes.string
};

关于reactjs - 未捕获的类型错误 : Cannot read property 'func' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42282706/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com