我正在使用react-context创建和使用上下文。我无法在上下文提供者的子组件中使用上下文。
我可以访问App上下文中的上下文。但是,每当我尝试访问单独的组件时,useContext都会返回未定义的内容。
我的App组件如下所示。
<div className="App">
<Navbar />
<Header/>
<InstructorContextProvider>
<InstructorPage />
</InstructorContextProvider>
</div>
instructionorContext看起来像:
const InstructorContextProvider = (props) => {
const [instructorList] = useState([1,2,3,4]);
return (
<InstructorContext.Provider value = {[...instructorList]}>
{props.children}
</InstructorContext.Provider>
使用InstructorContext时,InstructorPage组件返回未定义。
const InstructorPage = () => {
const [...instructorList] = useContext(InstructorContext);
console.log(instructorList);
return <h1> hello world </h1>
}
答案 0 :(得分:1)
您不需要使用[...instructorList]
,只需像instructorList
那样使用它即可。
而且,如果您查看this codesandbox,一切正常。