0
我在react-native中引入了用於搜索的Texinput。 這裏是代碼:失敗的道具類型無效的道具'值'
constructor(props){
super(props);
this.state = {
value : "",
items: [],
}
this.handleHeaderSearch = this.handleHeaderSearch.bind(this);
this.handleSearchBtn = this.handleSearchBtn.bind(this);
}
handleSearchBtn(){
}
handleHeaderSearch(){
if(!this.state.value) return;
}
和:
<TextInput
value={this.props.value}
onChange = {this.props.onChange}
placeholder={"جستجو"}
blurOnSubmit={false}
style={{flex:0.9}}
returnKeyType="done"
/>
每當我在文字輸入輸入後運行Android,我看到這樣的警告:
「警告未能道具類型無效提供給TextInput的類型'對象'的屬性'值',預期'字符串'「
當你改變價值時,你可以發佈一個代碼片段嗎? –
它正常工作,只有警告 –