我正在尝试使用useContext
将值从上下文提供程序传递给使用者,并在render函数之外访问该值。
我的提供者如下:
export const AppContext = React.createContext();
export class App extends React.Component(){
render(){
<AppContext.Provider value={{ name: 'John' }} ><Main /></AppContext>
}
}
我的消费者看起来像这样
import React, { useContext } from 'react';
import { AppContext } from './App';
export class Main extends React.Component(){
componentDidMount(){
const value = useContext(AppContext);
}
render(){
return (
<div>Main Component</div>
)
}
}
错误是这样的:
无效的挂钩调用。挂钩只能在功能组件的主体内部调用。
答案 0 :(得分:3)
如果要使用挂钩,它们是为功能组件而设计的。像这样:
import React, { useContext } from 'react';
import { AppContext } from './App';
const Main = () => {
const value = useContext(AppContext);
return(
<div>Main Component</div>
);
}
如果要在基于类的组件中使用它,只需在类中将其设置为静态contextType,然后就可以将其与组件中的this.context
一起使用,如下所示:
import React from 'react';
import { AppContext } from './App';
class Main extends React.Component(){
static contextType = AppContext;
componentDidMount(){
const value = this.context;
}
render(){
return (
<div>Main Component</div>
)
}
}
编辑: 从应用程序组件中删除上下文,并将其放在其自己的组件中。我认为您在导出上下文时遇到冲突。
因此您的应用程序组件应如下所示:
import React from "react";
import Context from "./Context";
import Main from "./Main";
class App extends React.Component {
render() {
return (
<Context>
<Main />
</Context>
);
}
}
export default App;
您的主要组件应为:
import React from "react";
import { AppContext } from "./Context";
class Main extends React.Component {
static contextType = AppContext;
render() {
return <div>{this.context.name}</div>;
}
}
export default Main;
和您的上下文组件应该像这样:
import React from "react";
export const AppContext = React.createContext();
class Context extends React.Component {
state = {
name: "John"
};
//Now you can place all of your logic here
//instead of cluttering your app component
//using this components state as your context value
//allows you to easily write funcitons to change
//your context just using the native setState
//you can also place functions in your context value
//to call from anywhere in your app
render() {
return (
<AppContext.Provider value={this.state}>
{this.props.children}
</AppContext.Provider>
);
}
}
export default Context;
这里是一个沙盒,向您展示其工作CodSandbox
答案 1 :(得分:2)
您会收到上述错误,因为挂钩是在功能组件内部而不是类组件内部使用的,而您尝试在作为类组件的Main组件的componentDidMount中使用它。
您可以使用useContext钩子(如
)重写Main组件的代码import React, { useContext } from 'react';
import { AppContext } from './App';
export const Main =() =>{
const value = useContext(AppContext);
return (
<div>Main Component</div>
)
}
或通过类似的方式以类似方式使用Context
import React from 'react';
import { AppContext } from './App';
class Main extends React.Component {
componentDidMount(){
const value = this.context;
// use value here. Also if you want to use context elsewhere in class
// you can use if from this.context
}
render(){
return (
<div>Main Component</div>
)
}
}
Main.contextType = AppContext;
export { Main };
答案 2 :(得分:0)
挂钩仅适用于无状态组件。您正在尝试在类组件中使用它。
答案 3 :(得分:0)
这是Main.js
文件的内容。如果要使用基于类的组件而不是功能组件,请取消注释注释的部分。
import React from "react";
import { AppContext } from "./App";
/** UNCOMMENT TO USE REACT CLASS COMPONENT */
// class Main extends React.Component() {
// render() {
// return (
// <AppContext.Consumer>
// {value => <div>It's Main component. Context value is ${value.name}</div>}
// </AppContext.Consumer>
// );
// }
// }
const Main = () => {
const value = React.useContext(AppContext);
return <div>It's Main component. Context value is ${value.name}</div>;
};
export default Main;
这是App.js
文件的内容。如果要使用基于类的组件而不是功能组件,请取消注释注释的部分。
import React from "react";
import ReactDOM from "react-dom";
import Main from "./Main";
export const AppContext = React.createContext();
/** UNCOMMENT TO USE REACT CLASS COMPONENT */
// export class App extends React.Component() {
// render() {
// return (
// <AppContext.Provider value={{ name: "John" }}>
// <Main />
// </AppContext.Provider>
// );
// }
// }
const App = () => (
<AppContext.Provider value={{ name: "John" }}>
<Main />
</AppContext.Provider>
);
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
直接为功能组件实现了React Hook,以使它们有状态的可能性。基于类的组件一直都是有状态的,因此您必须使用它们自己的state
API。
here上有可用的演示。