标签: reactjs react-context
我想知道如何将上下文API用于类组件中的多个上下文。 一次性使用
class ContextConsumer extends Component { static contextType = MyContext; componentDidMount() { console.log(this.context); } }
注意: 我知道如何在一个功能组件中使用多个上下文。但是想知道在类组件中的使用。