我正在构建一个 React Native 应用程序并为我的表单使用 tomb-form-native 库。在我的一个屏幕中,我循环遍历一组类型并为每种类型输出一个表单:
{my_types.map(ob =>
<View key={++i}>
<Text>{ob.type} #{ob.num}</Text>
<Form
ref={(c) => {
this.form = {}
this.form[ob.type] = c
}}
type={_formType(this, ob.type)}
options={_formOptions(ob.type)}
value={this.state.value}
onChange={this.onChange.bind(this)}
/>
</View>
)}
<TouchableHighlight style={styles.button} onPress={this.onPress.bind(this)}>
<Text style={styles.buttonText}>Submit</Text>
</TouchableHighlight>
但是当我尝试在我的 onPress 函数中获取提交的值时,它不适用于多种类型。如果我只调用一次 getValue() 它适用于一种类型:
input = this.form['my_type'].getValue()
console.log(input) // I see in my debugger that it works.
但是,如果我尝试获取两种或更多类型的输入,我在日志中看不到任何内容......
input = this.form['my_type'].getValue()
console.log(input) // Nothing. It doesn't work.
input2 = this.form['my_other_type'].getValue()
console.log(input2) // Nothing here either.
是否可以使用 tcomb 库通过一个 onPress 提交多个表单?也许这是我在 TouchableHighlight 的 onPress 属性中调用我的 onPress 函数的方式?
更新
这个简化的 onPress 函数表明我的表单 ref 仅在最后一次循环中工作。如果我的循环有两个项目......
onPress() {
let input = this.form[1]
console.log(input) // Undefined.
let input2 = this.form[2]
console.log(input2) // Object.
}