react 报错 Runtime Error: Context is undefined
·
Runtime Error
App.js: Context is undefined (54:31)
51 | }
52 |
53 | function PlaceImage({ place }) {
> 54 | const imageSize = useContext(sizeContext)
> ^
55 | return (
56 | <img
57 | src={getImageUrl(place)}
新手最容易遇到的问题,就是context和 其他组件都必须首字母大写。
更多推荐
所有评论(0)