React: checker is not a function

前端 未结 12 1442
庸人自扰
庸人自扰 2021-02-04 23:25

I\'m getting this weird warning message in the console for my React app.

Warning: Failed propType: checker is not a function Check the render method of <

12条回答
  •  终归单人心
    2021-02-04 23:40

    My version of Warning: Failed propType: checker is not a function came from forgetting to use PropTypes.shape for an object.

    Changing:

    someProps: {
        prop: React.PropTypes.string,
        anotherProp: React.PropTypes.number,
    }
    

    to this fixed the problem:

    someProps: React.PropTypes.shape({
        prop: React.PropTypes.string,
        anotherProp: React.PropTypes.number,
    })
    

提交回复
热议问题