我允许用户从选择器中选择一个数字,而不是像1、4、6那样随机。当他选择像 3 这样的数字时,将显示3 个 TextInputs ,他将在 3 个输入字段中输入内容,我想将这些值保存到一个数组中。如何做到这一点react native 我认为我使用的是一种糟糕的方法,我想要一个可以使我的代码高效并告诉我如何将值存储到数组中的专家。问候
{this.state.noOfStores === 1 && (
<TextInput
style={[
styles.input,
{
backgroundColor: theme.colors.lightGray,
},
]}
placeholder=" Name "
keyboardType={'default'}
placeholderTextColor="gray"
/>
)}
{this.state.noOfStores === 2 && (
<View>
<TextInput
style={[
styles.input,
{
backgroundColor: theme.colors.lightGray,
},
]}
placeholder=" Name "
keyboardType={'default'}
placeholderTextColor="gray"
/>
<TextInput
style={[
styles.input,
{
backgroundColor: theme.colors.lightGray,
},
]}
placeholder=" Name "
keyboardType={'default'}
placeholderTextColor="gray"
/>
</View>
)}
{this.state.noOfStores === 3 && (
<View>
<TextInput
style={[
styles.input,
{
backgroundColor: theme.colors.lightGray,
},
]}
placeholder=" Name "
keyboardType={'default'}
placeholderTextColor="gray"
/>
梵蒂冈之花
慕桂英546537
SMILET
相关分类