todoSTH : function(){
}
todoSTH =()=>{
}
_fetchData(){ //公共组件的私有方法,只能在这个组件内使用,不对外暴露
fetch(地址url)
.then((response)=>response.json())
.then((response)=>{
var data= Mock.mock(response)//模拟数据
if(data.success){
this.setState({
dataSource:data
})
}
console.log(data)
}).catch((error)=>{
console.warn(error)
})
}
ListView的有方法
dataSource接收数据
renderRow 渲染多少条
renderFooter 上拉加载更多
onEndReached 上拉刷新功能
onEndReachThreshold ={20} 距离底部20dp的时候开始请求下一页面的数据
enabkeEmptySections ={true}
audomaticallyAdjustConentInsets ={false} 自适应宽高
showVerticalScrollIndicator ={false } 不显示滚动条
<RefreshControl> 加载提示
加载更多组件 旋转菊花
<ActivityIndicatorIOS>