問題タブ [react-class-based-component]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
reactjs - コンストラクターでコンテキストが未定義 - 反応する
コンストラクター内でアクセスできるようにするには、コンテキストを super に渡す必要があります。
コンストラクターへのコンテキストの受け渡しは、最新のドキュメントにはありません-
https://reactjs.org/docs/context.html
しかし、それはレガシーAPIのドキュメントにあります。
https://reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods
コンテキストを super に渡すことはバージョン 17 以降では非推奨になるため、constructor で super にコンテキストを渡すことでコンテキストにアクセスできるようにする方法は何ですか?
ありがとう!