react-native选择器未显示数组项

时间:2019-11-08 09:21:46

标签: react-native

本机选择器未显示数组项。你能帮忙吗?

这是我的代码:

    <Picker
      selectedValue={this.state.category}   
      onValueChange={itemValue => this.setState({category: itemValue})}> 
      {this.props.categoryList.map((item,index) =>             
        <Picker.Item label={item.lookUpName} value={item.lookUpId} key={index}>)
       )}  
    </Picker> 

0 个答案:

没有答案
相关问题