React-Native组件之ListView

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React-Native组件之ListView相关的知识,希望对你有一定的参考价值。

在使用dataSource时,我们需要先new一个dataSource对象 constructor(){ super(); this.state = { movies:new ListView.DataSource({ rowHasChanged:(row1,row2) => row1 !== row2 }) } this.fetchData(); //豆瓣json https://api.douban.com/v2/movie/top250 }; 1.getRowData(dataBlob, sectionID, rowID):表明我们将以何种方式从dataBlob(数据源)中提取出rowData, sectionID用于指定每一个section的标题名(在renderRow,renderHeader等方法中会默认拆开并作为参数传入) 2.getSectionHeaderData(dataBlob, sectionID):表明我们将以何种方式从dataBlob(数据源)中提 取出HeaderData。HeaderData用于给每一个sectionHeader赋值 3.rowHasChanged(prevRowData, nextRowData):指定我们更新row的策略,一般来说都是prevRowData和 nextRowData不相等时更新row 4.sectionHeaderHasChanged(prevSectionData, nextSectionData):指定我们更新sectionHeader的策略, 一般如果用到sectionData的时候才指定 fetchData(){ data =‘username=‘+user; fetch(REQUEST_URL, { method: ‘POST‘, headers: { ‘Accept‘:‘application/json‘, ‘Content-Type‘:‘application/x-www-form-urlencoded‘ }, body: data }) .then((response) => response.json()) //把response转为json .then((responseData) => { this.setState({ movies:this.state.movies.cloneWithRows(responseData.subjects) }) }) .catch((error)=> { alert(error); }) }; renderMovieList(movie){ return( <View> <View style={styles.itemContent}> <Text onPress={() => this._gotoSubClass(movie.Sn) } style={styles.itemHeader}> {movie.title} </Text> </View> </View> ); } //render两种写法 一 render() { return( <View style={styles.container}> <ListView dataSource={this.state.movies} renderRow={ this.renderMovieList.bind(this) //上边自定义方法 } /> </View> ); } //render两种写法 二 render() { return( <View style={styles.container}> <ListView dataSource={this.state.movies} renderRow={(movieData) => <Text>{movieData.title}</Text>} /> </View> ); }

附一篇简书很好的文

以上是关于React-Native组件之ListView的主要内容,如果未能解决你的问题,请参考以下文章

React-Native组件之Text内文字垂直居中方案

react-native之远程图片修改后APP不更新

React-Native之IOS本地模块的应用实践分享(仅此一篇足以...)

React-Native入门指导之iOS篇 —— 一准备工作

React-Native之ListView的3种样式

React-Native中导航组件react-navigation的使用