React TypeError:无法解构属性,因为它未定义

问题描述 投票:0回答:3

这段代码有什么问题吗?

class App extends React.Component {
  constructor(props) {
    super(props);
    this.state ={
      name: '',
      gender: '',
      age: '',
    };
  }

  componentWillMount() {
    const { steps } = this.props;
    const { name, gender, age } =steps;
    this.setState({ name, gender,age });

  }

错误显示如下:

enter image description here

它不是在上面的

this.state
块中定义的吗?


完整代码在这里:

应用程序.js

export default class App extends Component {
  constructor(props) {
    super(props);    
    this.state = {
      name: '',
      age: '',
    };
  }

  componentWillMount() {
    const { steps } = this.props;
    const { name,age } = steps;
    this.setState({ name, age });
  }

 render() {
    const { name, age } = this.state;
   
    return (
      <div>
        <h3>Summary</h3>
        <table>
          <tbody>
            <tr>
              <td>Name</td>
              <td>{name.value}</td>
            </tr>
            <tr>
              <td>Age</td>
              <td>{age.value}</td>
            </tr>
          </tbody>
        </table>
      </div>
    );
  }
}

SimpleForm.js

const steps = [
      {
        id: '1',
        message: 'What is your name?',
        trigger: 'name',
      },
      {
        id: 'name',
        user: true,
        trigger: '5',
      },
      {
        id: '5',
        message: 'How old are you?',
        trigger: 'age',
      },
      {
        id: 'age',
        user: true,
        trigger: '7',
      },
      {
        id: '7',
        message: 'Great! Check out your summary',
        trigger: 'review',
      },
      {
        id: 'review',
        component: <App />,
        asMessage: true,
        end: true,
      }
    ]


class simpleForm extends React.Component {
    render() {
        return (
            <ChatBot steps={steps} />
        )
     }
}

export default simpleForm;
reactjs components state react-props
3个回答
5
投票

错误很明显。您没有向 App 组件发送任何 props,因此 { steps } 未定义,并且您无法解构属性“steps”,因为它未定义。


0
投票

componentWillMount
现在是已弃用的生命周期方法,并将在版本 17 中删除。React 文档

一个选项是从 props 中定义默认值到状态中。 例如

this.state = {
  name: this.props.steps.name || '',
  gender: this.props.steps.gender || '',
  age: this.props.steps.age || ''
}

您也可以将其设置为

componentDidMount
之后的状态。


0
投票

这是 Chrome 错误,而不是你的 React 应用程序。

我在 Angular 应用程序中遇到同样的错误。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.