は私のソリューションです。
this.samePassword = t.refinement(t.String, (s) => {
return s == this.state.person.user_password;
});
なく、テキストの変更を処理し、状態を保存するonChange
機能を調製、フォーム定義
this.Person = t.struct({
user_id: t.String,
user_password: t.String,
reenter_password: this.samePassword,
});
次にでthis.samePassword
タイプを使用します。 this.validate
は、フォームが入力されたかどうかを示す変数です。
onChange(person) {
this.setState({ person });
if(person.reenter_password != null && person.reenter_password != "") {
this.validate = this.refs.form.getValue();
}
}
最後に、<Form>
<Form
ref="form"
type={this.Person}
value={this.state.person}
onChange={(v) => this.onChange(v)}
options={this.options}
/>
全コードに... this.state
、this.onChange
フックこのようなものです:
import React from "react";
import {View, TouchableOpacity, Text} from "react-native";
import * as t from "tcomb-form-native";
let Form = t.form.Form;
export default class CreateUser extends React.Component {
constructor(props) {
super(props);
this.state = {
person: {}
};
this.samePassword = t.refinement(t.String, (s) => {
return s == this.state.person.user_password;
})
this.Person = t.struct({
user_id: t.String,
user_password: t.String,
reenter_password: this.samePassword,
});
this.options = {
fields: {
user_password: {
password: true,
secureTextEntry: true,
error: "",
},
reenter_password: {
password: true,
secureTextEntry: true,
error: "different password",
},
}
};
this.validate = null;
}
onChange(person) {
this.setState({ person });
if(person.reenter_password != null && person.reenter_password != "") {
this.validate = this.refs.form.getValue();
}
}
render() {
return (
<View>
<Form
ref="form"
type={this.Person}
value={this.state.person}
onChange={(v) => this.onChange(v)}
options={this.options}
/>
<View>
<TouchableOpacity
style={{backgroundColor: this.validate ? "blue": "red"}}
activeOpacity={this.validate ? 0.5 : 1}
disabled={this.validate? false: true}
onPress={() => this.doNext()}>
<Text> NEXT MOVE </Text>
</TouchableOpacity>
</View>
</View>
);
}
}
ホープ、このことができます!
Afaik、これはバリデーターではできません。 代わりに、フォーム送信のチェックを処理します。 –
Hrm、それは残念です。私はこれがより良いUXになることをリアルタイムで検証しているように感じています。 – miphe
さて、あなたはいつでもあなた自身で書くことができます:) onTextChange => persist text;検証(); –