React: checker is not a function

前端 未结 12 1354
庸人自扰
庸人自扰 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:52

    I was using oneOfType with array of strings as an argument when in fact I intended to use oneOf.

    Something like that:

    // Wrong!
    PropTypes.oneOfType(['s', 'm'])
    
    // Right!
    PropTypes.oneOf(['s', 'm'])
    

提交回复
热议问题