问题 I'm currently learning react-native and getting stuck in ListView problems. I want to search data in ListView from a TextInput and i expect that the result is in ListView too. Here's what i've done so far: var PageOne = React.createClass({ getInitialState:function(){ return{ dataSource: new ListView.DataSource({ rowHasChanged: (row1, row2) => row1 !== row2, }), loaded: false, colorProps: { titleColor: 'white', }, searchText:"", } }, componentDidMount() { this.fetchData(); }, fetchData() {