当你稍微下拉列表视图时,你会看到指标。 但是,它并没有真正触发onRefresh回调。 当用户在指标显示时下拉列表视图时,我怎么能真正触发onRefresh回调呢?
_onRefresh() {
this.setState({isRefreshing: true}, this.props.refreshWords())
}
refreshControl={
<RefreshControl
refreshing={this.state.isRefreshing}
onRefresh={this._onRefresh.bind(this)}
title="Refreshing words"/>
}