gpt4 book ai didi

reactjs - 使用语义 UI react 多步骤表单

转载 作者:行者123 更新时间:2023-12-03 14:17:55 25 4
gpt4 key购买 nike

我刚刚掌握了 React 的语义 UI,并正在关注这个 tutorial .

虽然不错,但使用的“switch case”会抛出警告“预期默认情况”。

我假设这是一种更简单的方法来完成和消除警告消息?

render(){
const {step} = this.state;
const { firstName, lastName, email, age, city, country } = this.state;
const values = { firstName, lastName, email, age, city, country };
switch(step) {
case 1:
return <UserDetails
nextStep={this.nextStep}
handleChange = {this.handleChange}
values={values}
/>
case 2:
return <PersonalDetails
nextStep={this.nextStep}
prevStep={this.prevStep}
handleChange = {this.handleChange}
values={values}
/>
case 3:
return <Confirmation
nextStep={this.nextStep}
prevStep={this.prevStep}
values={values}
/>
case 4:
return <Success />
}
}

最佳答案

就像创建案例一样添加此内容。 :

default:
return <UserDetails
nextStep={this.nextStep}
handleChange = {this.handleChange}
values={values}
/>

`

这是默认情况,当值不是 1、2,3 和 4 时调用。

关于reactjs - 使用语义 UI react 多步骤表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54849502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com