我最近在React-native中工作,因为我正在构建一个基本的应用程序,在这里您可以有一个演出列表,每个演出都有一个关联的日期,该日期作为时间戳插入到Firebase中。

我想检查一下,但是按日期对数组进行排序以使列表显示最新的最好方法是什么?

componentWillMount() {
    this.props.gigsFetch();

    this.createDataSource(this.props);
}

componentWillReceiveProps(nextProps) {
    this.createDataSource(nextProps);
}

createDataSource({ gigs }) {
    const ds = new ListView.DataSource({
        rowHasChanged: (r1, r2) => r1 !== r2
    });

    this.dataSource = ds.cloneWithRows(gigs);
}


const mapStateToProps = state => {

    const sortedGigs = _.sortBy(state.gigs, 'date');

    const gigs = _.map(sortedGigs, (val, uid) => {
        return { ...val, uid };
    });

    return { gigs };
};


谢谢!

最佳答案

让firebase做到这一点,使用firebase查询

例如:
说您想显示最新的10场演出

firebase.database().ref('gigs/').orderByChild('date').limitToLast(10);


检查文档的limitToFirst和limitToLast部分
https://firebase.google.com/docs/database/web/lists-of-data

10-04 16:03