我正在尝试实现一个基本功能来禁用基于另一个字段值的字段。这是代码示例:
import React from 'react'
import t from "tcomb-form-native";
import {Text, View, TextInput, TouchableHighlight } from 'react-native';
const Form = t.form.Form;
var Type = t.struct({
disable: t.Boolean, // if true, name field will be disabled
name: t.String
});
var options = {
fields: {
name: {}
}
};
export default class App extends React.Component {
constructor(props){
super(props);
this.state = {
options: options,
value: null
}
}
onChange(value) {
var newOptions = t.update(this.state.options, {
fields: {
name: {
editable: {'$set': !value.disable}
}
}
});
this.setState({options: newOptions, value: value});
}
onPress() {
var value = this.refs.form.getValue();
if (value) {
console.log(value);
}
}
render() {
return (
<View style>
<Form
ref="form"
type={Type}
options={this.state.options}
value={this.state.value}
onChange={this.onChange}
/>
<TouchableHighlight style onPress={this.onPress} underlayColor='#99d9f4'>
<Text style>Save</Text>
</TouchableHighlight>
</View>
)
};
};
当我运行给定的代码时,我遇到了以下错误TypeError: undefined is not an object (evaluating 'this.state.options')
。这是一个非常基本的示例,因为我还是一个新手,我正在尝试了解此代码示例的真正工作原理。任何帮助表示赞赏。谢谢。