gpt4 book ai didi

reactjs - 如何为 React Material-UI TextField 和 Select 应用表单验证?

转载 作者:行者123 更新时间:2023-12-04 12:16:36 25 4
gpt4 key购买 nike

我正在尝试在去 handleNext() 之前向 TextField 和 Select 添加验证。这是代码(2个组件):

class Quote extends React.Component {
state = {
activeStep: 0,
zipCode: '',
destination: '',
sedanPrice: '',
suvPrice: '',
labelWidth: 0,
};

getStepContent = (step) => {
switch (step) {
case 0:
return (
<div>
<QuoteForm
{...this.state}
{...this.state.value}
handleChange={this.handleChange}
/>
</div>
)
case 1:
return (
<div>
<QuotePrice
{...this.state}
{...this.state.value}
/>
</div>
)
default:
throw new Error('Unknown step');
}
}

handleNext = () => {
this.setState(prevState => ({
activeStep: prevState.activeStep + 1,
}));
switch(this.state.activeStep){
case 0:
// Creates an API call for sedan pricing
API.getPrice(this.state.zipCode, "sedan" + this.state.destination).then(res => {
let price = res.data;
let key = Object.keys(price);
console.log("Sedan price is $" + price[key]);
this.setState({sedanPrice: price[key]});
})
.catch(err => console.log(err));

// Creates an API call for SUV pricing
API.getPrice(this.state.zipCode, "suv" + this.state.destination).then(res => {
let price = res.data;
let key = Object.keys(price);
console.log("SUV price is $" + price[key])
this.setState({suvPrice: price[key]});
})
.catch(err => console.log(err));
break
case 1:
console.log('forward to booking page');
window.location.href = '/booking';
break
default:
console.log('over');
}
};

handleBack = () => {
this.setState(state => ({
activeStep: state.activeStep - 1,
sedanPrice: '',
suvPrice: '',
destination: '',
zipCode: '',
}));
};

handleReset = () => {
this.setState({
activeStep: 0,
});
};

handleChange = event => {
const { name, value } = event.target;
this.setState({
[name]: value,
});
};

render() {
const { classes } = this.props;
const { activeStep } = this.state;
const steps = ['Pick Up Address', 'Select Your Vehicle'];

return (
<React.Fragment>
<CssBaseline />
<main className={classes.layout}>
<Paper className={classes.paper}>
<React.Fragment>
{activeStep === steps.length ? (
<React.Fragment>
<Typography variant="h5" gutterBottom>
Thank you for your interest!
</Typography>
</React.Fragment>
) : (
<React.Fragment>
{this.getStepContent(activeStep)}
<div className={classes.buttons}>
{activeStep !== 0 && (
<Button onClick={this.handleBack} className={classes.button}>
Back
</Button>
)}
<Button
variant="contained"
color="primary"
onClick={this.handleNext}
className={classes.button}
>
{activeStep === steps.length - 1 ? 'Book Now' : 'Next'}
</Button>
</div>
</React.Fragment>
)}
</React.Fragment>
</Paper>
</main>
</React.Fragment>
);
}

}

报价表格.js
export class QuoteForm extends React.Component {

state = {
zipCode: this.props.zipCode,
destination: this.props.destination,
}

render() {

const { classes } = this.props;

return (
<React.Fragment>
<Typography variant="h5" align="center">
Enter your zip code for a quick quote
</Typography>
<Grid container>
<Grid className={classes.TextField} item xs={12} sm={6}>
<TextField
required
id="zip"
name="zipCode"
label="Zip / Postal code"
fullWidth
autoComplete="billing postal-code"
value={this.props.zipCode}
onChange={this.props.handleChange}
/>
</Grid>
<FormControl xs={12} sm={6} className={classes.formControl}>
<Select
required
value={this.props.destination}
onChange={this.props.handleChange}
input={<Input name="destination" />}
displayEmpty
name="destination"
className={classes.selectEmpty}
>
<MenuItem value="">
<em>Select Your Airport *</em>
</MenuItem>
<MenuItem name="SAN" value={"SAN"}>San Diego International Airport</MenuItem>
<MenuItem name="LAX" value={"LAX"}>Los Angeles International Airport</MenuItem>
</Select>
</FormControl>
</Grid>
</React.Fragment>
);
}

}

我尝试了 2 种不同的方法。首先,使用 Button disabled 并编写一个函数来处理验证并将 disabled 设置为 false。其次,使用 npm 包来处理验证。两者都失败了,因为我是新手。任何帮助,将不胜感激。提前致谢。

最佳答案

请执行下列操作:

  • 保持 bool 状态说 errorerrorMessage
  • 在 handleNext 中,验证输入值并将错误设置为 false 并将消息设置为错误。
  • 对于 Material ui Textfield,使用 errorhelperText props在您的字段旁边很好地设置/显示错误
  • 对于 Material ui Select,使用 FormControl error支持和提供 labelSelect为了在您的字段旁边很好地设置/显示错误
  • 在错误修复之前,不要让用户转到下一个表单。
  • errorerrorMessageQuoteForm成分。

  • Working copy of your code is here在代码和框中

    状态

    state = {
    activeStep: 0,
    zipCode: "",
    destination: "",
    sedanPrice: "",
    suvPrice: "",
    labelWidth: 0,
    error: false, //<---- here
    errorMessage: {} //<-----here
    };

    句柄下一个

    handleNext = () => {
    let isError = false;
    if (this.state.zipCode.length < 2) {
    isError = true;
    this.setState({
    error: true,
    errorMessage: { zipCode: "enter correct zipcode" }
    });
    }
    if (this.state.destination === '') {
    isError = true;
    this.setState(prev => ({
    ...prev,
    error: true,
    errorMessage: { ...prev.errorMessage, destination: "enter correct destination" }
    }))
    } if(!isError){
    //add else if for validating other fields (if any)
    this.setState(prevState => ({
    activeStep: prevState.activeStep + 1,
    error: false,
    errorMessage: {}
    }));
    }
    ...

    梅文本域

              <TextField
    error={!!this.props.errorMessage.zipCode}
    required
    id="zip"
    name="zipCode"
    label="Zip / Postal code"
    fullWidth
    autoComplete="billing postal-code"
    value={this.props.zipCode}
    onChange={this.props.handleChange}
    helperText={
    this.props.errorMessage.zipCode &&
    this.props.errorMessage.zipCode
    }
    />

    美选

    <FormControl xs={12} sm={6} error={this.props.error}>
    <Select
    error={!!this.props.errorMessage.destination}
    label="enter cor dest"
    required
    value={this.props.destination}
    onChange={this.props.handleChange}
    input={<Input name="destination" />}
    displayEmpty
    name="destination"
    >
    <MenuItem value="">
    <em>Select Your Airport *</em>
    </MenuItem>
    <MenuItem name="SAN" value={"SAN"}>
    San Diego International Airport
    </MenuItem>
    <MenuItem name="LAX" value={"LAX"}>
    Los Angeles International Airport
    </MenuItem>
    </Select>
    <FormHelperText>
    {this.props.errorMessage.destination}
    </FormHelperText>
    </FormControl>

    关于reactjs - 如何为 React Material-UI TextField 和 Select 应用表单验证?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61966495/

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