React上下文在子组件中未定义

huangapple go评论95阅读模式
英文:

React context undefined in child component

问题

以下是你要翻译的代码部分:

  1. I'm new in react and I try to use a context for passing current username, I follow the tutorial, but it seems that my context is always undefined, can someone explain what I'm doing wrong?
  2. const AppContext = React.createContext({});
  3. class App extends React.Component {
  4. componentDidMount() {
  5. this.setState({
  6. User: {
  7. Username: "Guest",
  8. UserType: {
  9. Description: "Guest"
  10. }
  11. }
  12. });
  13. }
  14. render() {
  15. return (<div className="App">
  16. <AppContext.Provider value={this.state}>
  17. <Toolbar/>
  18. <!--This work fine-->
  19. <h3>{this.state.User.Username}</h3>
  20. </AppContext.Provider>
  21. </div>);
  22. }
  23. }
  24. class Toolbar extends React.Component {
  25. constructor(props, context) {
  26. super(props);
  27. }
  28. render() {
  29. return (
  30. <header className="toolbar">
  31. <!-- print the username -->
  32. </header>
  33. );
  34. }
  35. }
  36. export default Toolbar;

你尝试过的解决方案:

  1. <h3>{this.context.Username}</h3>

  2. <h3>{this.context.User.Username}</h3>

  3. this is something I found on internet, but it gives me "Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined":

    1. <AppContext.Consumer>
    2. {(value) => (
    3. <p>Inside consumer {value}</p>
    4. )}
    5. </AppContext.Consumer>
英文:

I'm new in react and I try to use a context for passing current username, I follow the tutorial, but it seems that my context is always undefined, can someone explain what I'm doing wrong?

  1. const AppContext = React.createContext({});
  2. class App extends React.Component {
  3. componentDidMount() {
  4. this.setState({
  5. User: {
  6. Username: &quot;Guest&quot;,
  7. UserType: {
  8. Description: &quot;Guest&quot;
  9. }
  10. }
  11. });
  12. }
  13. render() {
  14. return (&lt;div className=&quot;App&quot;&gt;
  15. &lt;AppContext.Provider value={this.state}&gt;
  16. &lt;Toolbar/&gt;
  17. &lt;!--This work fine--&gt;
  18. &lt;h3&gt;{this.state.User.Username}&lt;/h3&gt;
  19. &lt;/AppContext.Provider&gt;
  20. &lt;/div&gt;);
  21. }
  22. }
  23. class Toolbar extends React.Component {
  24. constructor(props, context) {
  25. super(props);
  26. }
  27. render() {
  28. return (
  29. &lt;header className=&quot;toolbar&quot;&gt;
  30. &lt;!-- print the username --&gt;
  31. &lt;/header&gt;
  32. );
  33. }
  34. }
  35. export default Toolbar;

I tried these solutions:

  1. &lt;h3&gt;{this.context.Username}&lt;/h3&gt;

  2. &lt;h3&gt;{this.context.User.Username}&lt;/h3&gt;

  3. this is something I found on internet, but it gives me "Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined":

    <AppContext.Consumer>
    {(value) => (
    <p>Inside consumer {value}</p>
    )}
    </AppContext.Consumer>

答案1

得分: 1

contextType 分配给读取上下文。

使用这个属性可以让您使用 this.context 消费最近的上下文类型的当前值。

  1. class Toolbar extends React.Component {
  2. static contextType = AppContext;
  3. render() {
  4. return (
  5. <header className="toolbar">
  6. <!-- 打印用户名 -->
  7. </header>
  8. )
  9. }
  10. }
英文:

Assign a contextType to read the context.

> Using this property lets you consume the nearest current value of that Context type using this.context.

  1. class Toolbar extends React.Component {
  2. static contextType = AppContext;
  3. render() {
  4. return (
  5. &lt;header className=&quot;toolbar&quot;&gt;
  6. &lt;!-- print the username --&gt;
  7. &lt;/header&gt;
  8. )
  9. }
  10. }

huangapple
  • 本文由 发表于 2023年3月15日 20:51:10
  • 转载请务必保留本文链接:https://go.coder-hub.com/75744966.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定