使用 React 和 material-ui 进行表单验证
Form validation with react and material-ui
我目前正在尝试使用 material-ui 组件向 built 表单添加验证。我有它的工作,但问题是我目前这样做的方式当前正在调用验证功能在输入中的每个状态变化(即输入的每个字母)。但是,我只希望在输入停止后进行验证。
鉴于我当前的代码:
class Form extends React.Component {
state = {open: false, email: '', password: '', email_error_text: null, password_error_text: null, disabled: true};
handleTouchTap() {
this.setState({
open: true,
});
}
isDisabled() {
let emailIsValid = false;
let passwordIsValid = false;
if (this.state.email === "") {
this.setState({
email_error_text: null
});
} else {
if (validateEmail(this.state.email)) {
emailIsValid = true
this.setState({
email_error_text: null
});
} else {
this.setState({
email_error_text: "Sorry, this is not a valid email"
});
}
}
if (this.state.password === "" || !this.state.password) {
this.setState({
password_error_text: null
});
} else {
if (this.state.password.length >= 6) {
passwordIsValid = true;
this.setState({
password_error_text: null
});
} else {
this.setState({
password_error_text: "Your password must be at least 6 characters"
});
}
}
if (emailIsValid && passwordIsValid) {
this.setState({
disabled: false
});
}
}
changeValue(e, type) {
const value = e.target.value;
const nextState = {};
nextState[type] = value;
this.setState(nextState, () => {
this.isDisabled()
});
}
login() {
createUser(this.state.email, this.state.password);
this.setState({
open: false
});
}
render() {
let {open, email, password, email_error_text, password_error_text, disabled} = this.state;
const standardActions = (
<FlatButton
containerElement={<Link to="/portal" />}
disabled={this.state.disabled}
label="Submit"
onClick={this.login.bind(this)}
/>
);
return (
<div style={styles.container}>
<Dialog
open={this.state.open}
title="Enter Your Details to Login"
actions={standardActions}
>
<span className="hint--right hint--bounce" data-hint="Enter in your email address">
<TextField
hintText="Email"
floatingLabelText="Email"
type="email"
errorText={this.state.email_error_text}
onChange={e => this.changeValue(e, 'email')}
/>
</span>
<br />
<span className="hint--right hint--bounce" data-hint="Enter your password">
<TextField
hintText="Password"
floatingLabelText="Password"
type="password"
errorText={this.state.password_error_text}
onChange={e => this.changeValue(e, 'password')}
/>
</span>
</Dialog>
<h1>VPT</h1>
<h2>Project DALI</h2>
<RaisedButton
label="Login"
primary={true}
onTouchTap={this.handleTouchTap.bind(this)}
/>
</div>
);
}
}
export default Form;
有没有一种方法可以在不对代码进行重大更改的情况下实现我想要的功能,或者是否需要完全重构它?
您可以使用 onblur 文本字段事件。输入失去焦点时触发。
检查是否必须在一定延迟后进行?我认为在大多数情况下就足够的解决方案是将您的代码分开一点。不要在 changedValue()
中触发你的 isDisabled()
功能。而是在 onBlur
事件中使用它 运行。
试试这个:
<TextField
hintText="Password"
floatingLabelText="Password"
type="password"
errorText={this.state.password_error_text}
onChange={e => this.changeValue(e, 'password')}
onBlur={this.isDisabled}
/>
然后你的函数变成:
changeValue(e, type) {
const value = e.target.value;
const nextState = {};
nextState[type] = value;
this.setState(nextState);
}
我创建的这个 library 负责处理与验证字段相关的所有事情,它还支持 material-ui 组件...
要验证你的字段,你只需要包装你的字段组件就大功告成了...节省了很多手动管理状态的工作量。
<Validation group="myGroup1"
validators={[
{
validator: (val) => !validator.isEmpty(val),
errorMessage: "Cannot be left empty"
}, ...
}]}>
<TextField value={this.state.value}
className={styles.inputStyles}
style={{width: "100%"}}
onChange={
(evt)=>{
console.log("you have typed: ", evt.target.value);
}
}/>
最简单的就是调用form.reportValidity()
。 form
可以通过调用event.currentTarget.form
获得。
当前 Material-UI 版本不使用 errorText
属性,但您仍然可以使用一种方法来显示错误并对 [ 中的 TextField 应用验证=20=]-UI.
我们使用error
(Boolean) 属性来表示是否有错误。要进一步显示错误文本,请使用 Material-UI 中文本字段的 helperText
属性,只需提供您要显示的错误文本即可。
这样做:
<TextField
value={this.state.text}
onChange={event => this.setState({ text: event.target.value })}
error={text === ""}
helperText={text === "" ? 'Empty!' : ' '}
/>
我目前正在尝试使用 material-ui 组件向 built 表单添加验证。我有它的工作,但问题是我目前这样做的方式当前正在调用验证功能在输入中的每个状态变化(即输入的每个字母)。但是,我只希望在输入停止后进行验证。
鉴于我当前的代码:
class Form extends React.Component {
state = {open: false, email: '', password: '', email_error_text: null, password_error_text: null, disabled: true};
handleTouchTap() {
this.setState({
open: true,
});
}
isDisabled() {
let emailIsValid = false;
let passwordIsValid = false;
if (this.state.email === "") {
this.setState({
email_error_text: null
});
} else {
if (validateEmail(this.state.email)) {
emailIsValid = true
this.setState({
email_error_text: null
});
} else {
this.setState({
email_error_text: "Sorry, this is not a valid email"
});
}
}
if (this.state.password === "" || !this.state.password) {
this.setState({
password_error_text: null
});
} else {
if (this.state.password.length >= 6) {
passwordIsValid = true;
this.setState({
password_error_text: null
});
} else {
this.setState({
password_error_text: "Your password must be at least 6 characters"
});
}
}
if (emailIsValid && passwordIsValid) {
this.setState({
disabled: false
});
}
}
changeValue(e, type) {
const value = e.target.value;
const nextState = {};
nextState[type] = value;
this.setState(nextState, () => {
this.isDisabled()
});
}
login() {
createUser(this.state.email, this.state.password);
this.setState({
open: false
});
}
render() {
let {open, email, password, email_error_text, password_error_text, disabled} = this.state;
const standardActions = (
<FlatButton
containerElement={<Link to="/portal" />}
disabled={this.state.disabled}
label="Submit"
onClick={this.login.bind(this)}
/>
);
return (
<div style={styles.container}>
<Dialog
open={this.state.open}
title="Enter Your Details to Login"
actions={standardActions}
>
<span className="hint--right hint--bounce" data-hint="Enter in your email address">
<TextField
hintText="Email"
floatingLabelText="Email"
type="email"
errorText={this.state.email_error_text}
onChange={e => this.changeValue(e, 'email')}
/>
</span>
<br />
<span className="hint--right hint--bounce" data-hint="Enter your password">
<TextField
hintText="Password"
floatingLabelText="Password"
type="password"
errorText={this.state.password_error_text}
onChange={e => this.changeValue(e, 'password')}
/>
</span>
</Dialog>
<h1>VPT</h1>
<h2>Project DALI</h2>
<RaisedButton
label="Login"
primary={true}
onTouchTap={this.handleTouchTap.bind(this)}
/>
</div>
);
}
}
export default Form;
有没有一种方法可以在不对代码进行重大更改的情况下实现我想要的功能,或者是否需要完全重构它?
您可以使用 onblur 文本字段事件。输入失去焦点时触发。
检查是否必须在一定延迟后进行?我认为在大多数情况下就足够的解决方案是将您的代码分开一点。不要在 changedValue()
中触发你的 isDisabled()
功能。而是在 onBlur
事件中使用它 运行。
试试这个:
<TextField
hintText="Password"
floatingLabelText="Password"
type="password"
errorText={this.state.password_error_text}
onChange={e => this.changeValue(e, 'password')}
onBlur={this.isDisabled}
/>
然后你的函数变成:
changeValue(e, type) {
const value = e.target.value;
const nextState = {};
nextState[type] = value;
this.setState(nextState);
}
我创建的这个 library 负责处理与验证字段相关的所有事情,它还支持 material-ui 组件...
要验证你的字段,你只需要包装你的字段组件就大功告成了...节省了很多手动管理状态的工作量。
<Validation group="myGroup1"
validators={[
{
validator: (val) => !validator.isEmpty(val),
errorMessage: "Cannot be left empty"
}, ...
}]}>
<TextField value={this.state.value}
className={styles.inputStyles}
style={{width: "100%"}}
onChange={
(evt)=>{
console.log("you have typed: ", evt.target.value);
}
}/>
最简单的就是调用form.reportValidity()
。 form
可以通过调用event.currentTarget.form
获得。
当前 Material-UI 版本不使用 errorText
属性,但您仍然可以使用一种方法来显示错误并对 [ 中的 TextField 应用验证=20=]-UI.
我们使用error
(Boolean) 属性来表示是否有错误。要进一步显示错误文本,请使用 Material-UI 中文本字段的 helperText
属性,只需提供您要显示的错误文本即可。
这样做:
<TextField
value={this.state.text}
onChange={event => this.setState({ text: event.target.value })}
error={text === ""}
helperText={text === "" ? 'Empty!' : ' '}
/>