作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当前行为:
我正在尝试通过拉起 View 来更新从服务器获取的列表。当我做 onRefresh 不会触发。
我已经在 setState 函数的回调中设置了 GET 请求,但这似乎没有任何作用。
预期行为:
拉起 View 调用 onRefresh 函数。
代码:
...
constructor(props) {
super(props);
this.state = {
stories: [],
isFetching: false,
};
}
componentDidMount() { this.fetchData() }
onRefresh() {
this.setState({ isFetching: true }, function() { this.fetchData() });
}
fetchData() {
var that = this;
axios.get('http://192.168.0.13:3000/api/story/get/by/geo')
.then((res) => {
that.setState({ stories: res.data, isFetching: false });
that.props.dispatch(StoryActions.setStories(res.data))
})
}
render() {
return (
<ScrollView>
<FlatList
onRefresh={() => this.onRefresh()}
refreshing={this.state.isFetching}
data={this.state.stories}
keyExtractor={(item, index) => item.id}
renderItem={({item}) => (<StoryFeed story={item} id={item.id} /> )}
/>
</ScrollView>
)
}
最佳答案
评论,因为这在我的搜索中在 google bing 上排名靠前。
在我的情况下,自动导入了另一个 FlatList,它的行为与我想要的不完全一样(它似乎没有“onRefresh”):
import { FlatList } from 'react-native-gesture-handler';
import { FlatList } from 'react-native';
关于React-Native:上拉时未调用 FlatList onRefresh。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44788089/
在我们的数据库表上,我们使用两个唯一的非聚集索引来创建跨四个字段的唯一约束。我们使用两个,因为其中一个字段 ZipCode 是一个可为空的字段。如果表中存在一条包含 ZipCode 的 null 条目
我刚刚开始学习 Rails 3 教程,以便对框架有一点熟悉,但我在生成 schema.rb 时遇到了问题。我的操作系统是 Windows 7 x64、Ruby 1.9.2、MySQL2 gem 0.2
我是一名优秀的程序员,十分优秀!