我在我的项目中实现了https://github.com/react-native-picker/picker作为我自己的组件。为了在选择器中有动态数量的项目,我决定用 MyPicker.Item 做这样的事情:
import { MyPicker } from '../Common/MyPicker.component';
<MyPicker
style={styles.picker}
selectedValue={this.state.selectedItem}
onValueChange={(itemValue) =>
this.setState({selectedItem: itemValue})}>
<MyPicker.Item label='dziewczynka' value='dziewczynka' color='black' />
<MyPicker.Item label='chłopiec' value='chłopiec' color='black' />
</MyPicker>
这就是 MyPicker 的样子:
import React, { Component } from 'react';
import {
View
} from 'react-native';
import {Picker} from '@react-native-picker/picker';
import styles from './MyPicker.component.style';
export function MyPicker(props) {
return (
<View style={styles.container}>
<Picker
onValueChange={(itemValue) =>
props.onValueChange(itemValue)}
mode={'dropdown'}>
{props.children}
</Picker>
</View>
)
}
它正在工作,我可以选择这些项目,它返回正确的值,但我收到了这个警告并且它很烦人。我该如何处理?
Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.