react-native-pull-demo
react-native-pull-demo copied to clipboard
当我加载第3页数据时 onLoading函数没有响应,造成一直停留在加载状态
下面是我的代码: <LargeList ref={ref => (this._list = ref)} data={this.items} heightForIndexPath={() => 184} renderIndexPath={this._renderIndexPath} loadingFooter={ChineseWithLastDateFooter} onLoading={()=> { console.info(this.total) if (this.total.page < this.total.pages) { actions.userorder(this.state.status, parseInt(this.total.page) + 1); } }} allLoaded={this.state.allLoaded}
/>