RN筆記-RefreshControl原生態(tài)刷新控件

原生態(tài)刷新控件

在開發(fā)過程中尺铣,經(jīng)常要用到刷新控件描验,iOS中比較熱門使用第三方的刷新控件占哟,然而卻忽略了蘋果系統(tǒng)原生的刷新效果华烟,整體簡潔大方美觀翩迈,同樣的在react-native中也提供了這樣的刷新效果。以下將提供在iosrn開發(fā)過程對RefreshControl的編寫方法盔夜。

一负饲、IOS中使用方法
-(void)viewDidLoad {
  
  [super viewDidLoad];
  
  _tableView = [[UITableView alloc]initWithFrame:CGRectMake(0,64,self.view.frame.size.width,self.view.frame.size.height-64) style:UITableViewStylePlain];
  
  [self.viewaddSubview:_tableView];
  
  _tableView.backgroundView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"bj"]];
  
  //刷新的控件
  
  _control = [[UIRefreshControl alloc]init];
  
  [_tableView addSubview:_control];
  
  [_control addTarget:self action:@selector(refresh) forControlEvents:UIControlEventValueChanged];
  

}

//刷新時調(diào)用的方法
-(void)refresh
{
  if(_isLoading)
  {
    [_control endRefreshing];
    
    return;
  }
  
  //模擬下載數(shù)據(jù)
  
  _isLoading = YES;
  
  NSData*data = [NSData dataWithContentsOfURL:[NSURLURLWithString:@"http://www.baidu.com"]];
  
  NSLog(@"%ld",data.length);
  
  [_tableView reloadData];
  
  [_control endRefreshing];
  
  _isLoading = NO;
}

二、RN中使用方法
import React, { Component } from 'react';
import {
  AppRegistry,
  StyleSheet,
  Text,
  View,
  TouchableOpacity,
  Image,
  ListView,
  ScrollView,
  RefreshControl
} from 'react-native';

// 導(dǎo)入外部組件
var Service = require('../../Common/Service');
var Util = require('../../Common/Util');

var Dimensions = require('Dimensions');
var {width, height} = Dimensions.get('window');

var ConsultList = React.createClass({
getDefaultProps(){
  return{
    popToHome:null,
    classid:'',
    htmlContent:null
  }
},

  getInitialState(){
    //創(chuàng)建數(shù)據(jù)源
    var ds = new ListView.DataSource({rowHasChanged:(row1, row2) => row1 !== row2});
    //初始化數(shù)據(jù)源
    return {
      dataSource: ds,
      isEmptyData:false,
      isRefreshing:true
    }
  },
  render() {
    return (
        this.state.isEmptyData ?
        this.isEmptyData() :
        <View style={styles.container}>
          { /*列表*/ }
          <ListView
            dataSource={this.state.dataSource}
            renderRow={this.renderRow}
            refreshControl={
             <RefreshControl
             refreshing={this.state.isRefreshing}
             tintColor="gray"
             title="正在刷新"
             onRefresh={this._onRefresh}/>}
          />
      </View>
    );
  },
  _onRefresh: function() {
    console.log("刷新");
    this.setState({isRefreshing: true});
    this.getEduData();
  },
  popToHome(mark){
    if (mark == null) return;
    this.props.popToHome(mark);
  },
  popHeader(html){
    if (html == null) return;
    this.props.htmlContent(html);
  },

  renderRow(rowData){
    console.log('rowData',rowData);
    return(
      <TouchableOpacity onPress={()=>this.popHeader(rowData.newscontent)}>
        <View style={styles.listViewStyle}>
          { /*左邊*/ }
          <Image source={{uri:rowData.newspic}} style={styles.imageViewStyle}/>
          { /*右邊*/ }
          <View style={styles.rightViewStyle}>
            <View style={styles.rightTopViewStyle}>
              <Text style={{color:'#333333'}}>{rowData.newstitle}</Text>
            </View>
            <View style={styles.rightBottomViewStyle}>
              <Text style={{color:'gray'}}>{rowData.newsremark}</Text>
            </View>
          </View>
        </View>
      </TouchableOpacity>
    )
  },

componentDidMount(){
  //從網(wǎng)絡(luò)上請求數(shù)據(jù)
  this.getEduData();
},
getEduData(){

  var url = Service.consultListUrl;
  let formData = new FormData();
  formData.append("extend",'zhSPe69X8gPAI9Zk5tHMGc01aMyvch2dEmvzOWIr3pI=');

  fetch(url,{
    method:'POST',
    headers:{
        'Content-Type':'multipart/form-data',
    },
    body:formData,
  })
  .then((response) => response.text() )
  .then((responseData)=>{

    console.log('responseData',responseData);
    this.getEduListData();
  })
  .catch((error)=>{console.error('error',error)
      alert(error);
  });
},

getEduListData(){
  var url = Service.consultListUrl;
  let formData = new FormData();
  formData.append('extend','zhSPe69X8gPAI9Zk5tHMGVMFO4j2515k1lTzzhs+RC4=');
  formData.append('classid',this.props.classid);
  formData.append('keyValue','');
  formData.append('page','1');
  formData.append('pageSize','10');

  fetch(url,{
    method:'POST',
    headers:{
        'Content-Type':'multipart/form-data',
    },
    body:formData,
  })
  .then((response) => response.text() )
  .then((responseData)=>{

    // console.log('responseData',responseData);
    // json格式化  JSON.stringify(responseData)轉(zhuǎn)字符串
    console.log('json格式化',JSON.parse(responseData));
    // alert(responseData);

    if (!JSON.parse(responseData).data || JSON.parse(responseData).data.length==0) {
      this.setState({
        isEmptyData:true
      });
    }
    //更新數(shù)據(jù)源
    this.setState({
      isRefreshing:false,
      dataSource:this.state.dataSource.cloneWithRows(JSON.parse(responseData).data)
    });
  })
  .catch((error)=>{console.error('error',error)
      alert(error);
  });
},
  isEmptyData(){
    return (
      <ScrollView style={{backgroundColor:'#e8e8e8'}}>
        <View style={styles.emptyDataStyle}>
          <Image source={{uri:'bv_dropbox'}} style={styles.emptyDataIcon}/>
          <Text style={{marginTop:5,color:'gray'}}>暫未有資訊</Text>
        </View>
      </ScrollView>
    )
  }
});

var styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#e8e8e8',
  },
  imageViewStyle: {
    width:80,
    height:100
  },
  listViewStyle: {
    backgroundColor: 'white',
    padding: 10,
    borderBottomColor:'#e8e8e8',
    borderBottomWidth:0.5,
    flexDirection:'row'
  },
  rightViewStyle: {
    marginLeft:8,
    width:width-110,
    justifyContent:'center'
  },
  rightTopViewStyle: {
    flexDirection:'row',
    marginBottom:7,
    justifyContent:'space-between'
  },
  rightBottomViewStyle: {
    flexDirection:'row',
    marginTop:7,
    justifyContent:'space-between'
  },
  emptyDataStyle:{
    justifyContent:'center',
    alignItems:'center',
    marginTop:100
  },
  emptyDataIcon:{
    width:50,
    height:50,
  }
});

module.exports = ConsultList;
效果圖
RefreshControl.gif
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末喂链,一起剝皮案震驚了整個濱河市返十,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌衩藤,老刑警劉巖吧慢,帶你破解...
    沈念sama閱讀 211,948評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異赏表,居然都是意外死亡检诗,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,371評論 3 385
  • 文/潘曉璐 我一進(jìn)店門瓢剿,熙熙樓的掌柜王于貴愁眉苦臉地迎上來逢慌,“玉大人,你說我怎么就攤上這事间狂」テ茫” “怎么了?”我有些...
    開封第一講書人閱讀 157,490評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長忙菠。 經(jīng)常有香客問我何鸡,道長,這世上最難降的妖魔是什么牛欢? 我笑而不...
    開封第一講書人閱讀 56,521評論 1 284
  • 正文 為了忘掉前任骡男,我火速辦了婚禮,結(jié)果婚禮上傍睹,老公的妹妹穿的比我還像新娘隔盛。我一直安慰自己,他們只是感情好拾稳,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,627評論 6 386
  • 文/花漫 我一把揭開白布吮炕。 她就那樣靜靜地躺著,像睡著了一般访得。 火紅的嫁衣襯著肌膚如雪龙亲。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,842評論 1 290
  • 那天震鹉,我揣著相機(jī)與錄音俱笛,去河邊找鬼。 笑死传趾,一個胖子當(dāng)著我的面吹牛迎膜,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播浆兰,決...
    沈念sama閱讀 38,997評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼磕仅,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了簸呈?” 一聲冷哼從身側(cè)響起榕订,我...
    開封第一講書人閱讀 37,741評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎蜕便,沒想到半個月后劫恒,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,203評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡轿腺,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,534評論 2 327
  • 正文 我和宋清朗相戀三年两嘴,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片族壳。...
    茶點(diǎn)故事閱讀 38,673評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡憔辫,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出仿荆,到底是詐尸還是另有隱情贰您,我是刑警寧澤坏平,帶...
    沈念sama閱讀 34,339評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站锦亦,受9級特大地震影響舶替,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜孽亲,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,955評論 3 313
  • 文/蒙蒙 一坎穿、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧返劲,春花似錦、人聲如沸栖茉。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,770評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽吕漂。三九已至亲配,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間惶凝,已是汗流浹背吼虎。 一陣腳步聲響...
    開封第一講書人閱讀 32,000評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留苍鲜,地道東北人思灰。 一個月前我還...
    沈念sama閱讀 46,394評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像混滔,于是被迫代替她去往敵國和親洒疚。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,562評論 2 349

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,799評論 25 707
  • WebSocket-Swift Starscream的使用 WebSocket 是 HTML5 一種新的協(xié)議坯屿。它實(shí)...
    香橙柚子閱讀 23,798評論 8 183
  • 過客這詞我最早用油湖,是我和初戀說的,當(dāng)時裝文藝领跛,現(xiàn)在一語成讖乏德。可能曾經(jīng)會覺得這是一個非常裝逼的字眼吠昭,后來發(fā)現(xiàn)這兩個字...
    jm清如許閱讀 159評論 0 0
  • 喂怎诫,你怎么不說話瘾晃? 我醉了! 你沒有喝酒怎么就醉了幻妓? 你眼波流轉(zhuǎn)蹦误,我已心醉劫拢! 噢~夸我呢?不過你這個B裝的不好强胰,你...
    顧雪影閱讀 265評論 0 0
  • 來印度之前舱沧,在尼泊爾我碰到了一位志愿者,和我一樣偶洋,她此次出國做志愿者的目的地是印度和尼泊爾熟吏,不過和我相反,她更喜歡...
    Ashiba閱讀 453評論 0 0