使用React Native Picker Component时应用崩溃

时间:2018-10-29 06:19:52

标签: reactjs react-native jsx picker

大家好,我在下拉菜单中列出了一些项目。我正在使用react native picker组件,但问题是,当我更改labelvalue组件时,应用崩溃了。以下是我自定义的代码。请检查并帮助我。

更新的代码

     render(){
   const data_id =  this.state.workers.map(a => a.worker_id);
   console.log(data_id);
    return(

        <View style={{flex:1}}>

           <Card>
             <CardSection>
               <Text style={{fontSize:16,padding:3}}>{this.props.Work_Category}</Text>
               <View>

               <Dropdown
                 label="select worker"
                 data={data_id}
                  />
               </View>
             </CardSection>
           </Card>
        </View>
    );
  }
}

当我像上面那样更改value的{​​{1}}和label组件时,应用程序崩溃。否则,如果Picker和{ {1}}组件是字符串。我没什么错。请..帮助..

0 个答案:

没有答案