在类组件中使用React Context API的多个上下文

时间:2019-12-23 09:30:27

标签: reactjs react-context

我想知道如何将上下文API用于类组件中的多个上下文。 一次性使用

  class ContextConsumer extends Component { 
      static contextType = MyContext;

      componentDidMount() {
          console.log(this.context);
      }
   }

注意: 我知道如何在一个功能组件中使用多个上下文。但是想知道在类组件中的使用。

0 个答案:

没有答案