Fetch數據請求的使用

fetch是基于Promise, 所以舊瀏覽器不支持 Promise,

Fetch 優(yōu)點主要有:

語法簡潔肿孵,更加語義化
基于標準 Promise 實現,支持 async/await
同構方便蒜焊,使用 isomorphic-fetch

基本書寫結構

fetch(url).then(function(response) {
 return response.json();
}).then(function(data) { 
 console.log(data);
}).catch(function(e) { 
 console.log("Oops, error");
});

es6 箭頭寫法:

fetch(url).then(response => response.json()) 
  .then(data => console.log(data)) 
  .catch(e => console.log("Oops, error", e))

支持及兼容:

由于 IE8 是 ES3,需要引入 ES5 的 polyfill: es5-shim, es5-sham
引入 Promise 的 polyfill: es6-promise
引入 fetch 探測庫:fetch-detector
引入 fetch 的 polyfill: fetch-ie8
可選:如果你還使用了 jsonp科贬,引入 fetch-jsonp
可選:開啟 Babel 的 runtime 模式泳梆,現在就使用 async/await

Fetch polyfill 的基本原理是探測是否存在 window.fetch
方法,如果沒有則用 XHR 實現榜掌。這也是 github/fetch 的做法优妙,但是有些瀏覽器(Chrome 45)原生支持 Fetch,但響應中有中文時會亂碼憎账,老外又不太關心這種問題套硼,所以我自己才封裝了 fetch-detector
和 fetch-ie8
只在瀏覽器穩(wěn)定支持 Fetch 情況下才使用原生 Fetch。這些庫現在每天有幾千萬個請求都在使用胞皱,絕對靠譜邪意!

Fetch 常見坑

Fetch 請求默認是不帶 cookie 的,需要設置 fetch(url, {credentials: 'include'})
服務器返回 400反砌,500 錯誤碼時并不會 reject雾鬼,只有網絡錯誤這些導致請求不能完成時,fetch 才會被 reject宴树。

一個簡單的例子

//一個獲取電影列表的例子  

import React, { Component } from 'react';
import {
  Text,
  View,
  Image,
  ListView,
  ActivityIndicator,
  TouchableHighlight
} from 'react-native';

import styles from '../Styles/Main';
import MovieDetail from './MovieDetail';

class MovieList extends Component {
  constructor(props) {
    super(props);

    this.state = {
      movies: [],
      loaded: false,
      count: 20,
      start: 0,
      total: 0,
    };

    this.dataSource = new ListView.DataSource({
      rowHasChanged: (row1, row2) => row1 !== row2
    });

    this.REQUEST_URL = 'https://api.douban.com/v2/movie/top250';

    this.fetchData();

  }

  requestURL(
    url = this.REQUEST_URL,
    count = this.state.count,
    start = this.state.start
  ) {
    return (
      `${url}?count=${count}&start=${start}`
    );
  }

  fetchData() {
    fetch(this.requestURL())
      .then(response => response.json())
      .then(responseData => {
        let newStart = responseData.start + responseData.count;
        this.setState({
          movies: responseData.subjects,
          loaded: true,
          total: responseData.total,
          start: newStart,
        });
      })
      .done();
  }

  showMovieDetail(movie) {
    this.props.navigator.push({
      title: movie.title,
      component: MovieDetail,
      passProps: {movie},
    });
  }

  renderMovieList(movie) {
    return (
      <TouchableHighlight
        underlayColor="rgba(34, 26, 38, 0.1)"
        onPress={() => this.showMovieDetail(movie)}
      >
        <View style={styles.item}>
          <View style={styles.itemImage}>
            <Image
              source={{uri: movie.images.large}}
              style={styles.image}
             />
          </View>
          <View style={styles.itemContent}>
            <Text style={styles.itemHeader}>{movie.title}</Text>
            <Text style={styles.itemMeta}>
              {movie.original_title} ( {movie.year} )
            </Text>
            <Text style={styles.redText}>
              {movie.rating.average}
            </Text>
          </View>
        </View>
      </TouchableHighlight>
    );
  }

  loadMore() {
    fetch(this.requestURL())
      .then(response => response.json())
      .then(responseData => {
        let newStart = responseData.start + responseData.count;
        this.setState({
          movies: [...this.state.movies, ...responseData.subjects],
          start: newStart
        });
      })
      .done();
  }

  onEndReached() {
    console.log(
      `到底了策菜!開始:${this.state.start},總共:${this.state.total}`
    );

    if (this.state.total > this.state.start) {
      this.loadMore();
    }
  }

  renderFooter() {
    if (this.state.total > this.state.start) {
      return (
        <View
          style={{
            marginVertical: 20,
            paddingBottom: 50,
            alignSelf: 'center'
          }}
        >
          <ActivityIndicator />
        </View>
      );
    } else {
      return (
        <View
          style={{
            marginVertical: 20,
            paddingBottom: 50,
            alignSelf: 'center'
          }}
        >
          <Text
            style={{
              color: 'rgba(0, 0, 0, 0.3)'
            }}
          >沒有可以顯示的內容了:)</Text>
        </View>
      );
    }
  }

  render() {
    if (!this.state.loaded) {
      return (
        <View style={styles.container}>
          <View style={styles.loading}>
            <ActivityIndicator
              size="large"
              color="#6435c9"
            />
          </View>
        </View>
      );
    }
    return (
      <View style={styles.container}>
        <ListView
          renderFooter={this.renderFooter.bind(this)}
          pageSize={this.state.count}
          onEndReached={this.onEndReached.bind(this)}
          initialListSize={this.state.count}
          dataSource={this.dataSource.cloneWithRows(this.state.movies)}
          renderRow={this.renderMovieList.bind(this)}
        />
      </View>
    );
  }
}

export { MovieList as default };
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末森渐,一起剝皮案震驚了整個濱河市做入,隨后出現的幾起案子,更是在濱河造成了極大的恐慌同衣,老刑警劉巖竟块,帶你破解...
    沈念sama閱讀 211,561評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現場離奇詭異耐齐,居然都是意外死亡浪秘,警方通過查閱死者的電腦和手機蒋情,發(fā)現死者居然都...
    沈念sama閱讀 90,218評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來耸携,“玉大人棵癣,你說我怎么就攤上這事《嵫埽” “怎么了狈谊?”我有些...
    開封第一講書人閱讀 157,162評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長沟沙。 經常有香客問我河劝,道長,這世上最難降的妖魔是什么矛紫? 我笑而不...
    開封第一講書人閱讀 56,470評論 1 283
  • 正文 為了忘掉前任赎瞎,我火速辦了婚禮,結果婚禮上颊咬,老公的妹妹穿的比我還像新娘务甥。我一直安慰自己,他們只是感情好喳篇,可當我...
    茶點故事閱讀 65,550評論 6 385
  • 文/花漫 我一把揭開白布敞临。 她就那樣靜靜地躺著,像睡著了一般杭隙。 火紅的嫁衣襯著肌膚如雪哟绊。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,806評論 1 290
  • 那天痰憎,我揣著相機與錄音票髓,去河邊找鬼。 笑死铣耘,一個胖子當著我的面吹牛洽沟,可吹牛的內容都是我干的。 我是一名探鬼主播蜗细,決...
    沈念sama閱讀 38,951評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼裆操,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了炉媒?” 一聲冷哼從身側響起踪区,我...
    開封第一講書人閱讀 37,712評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎吊骤,沒想到半個月后缎岗,有當地人在樹林里發(fā)現了一具尸體,經...
    沈念sama閱讀 44,166評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡白粉,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,510評論 2 327
  • 正文 我和宋清朗相戀三年传泊,在試婚紗的時候發(fā)現自己被綠了鼠渺。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,643評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡眷细,死狀恐怖拦盹,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情溪椎,我是刑警寧澤普舆,帶...
    沈念sama閱讀 34,306評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站校读,受9級特大地震影響奔害,放射性物質發(fā)生泄漏。R本人自食惡果不足惜地熄,卻給世界環(huán)境...
    茶點故事閱讀 39,930評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望芯杀。 院中可真熱鬧端考,春花似錦、人聲如沸揭厚。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽筛圆。三九已至裂明,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間太援,已是汗流浹背闽晦。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留提岔,地道東北人仙蛉。 一個月前我還...
    沈念sama閱讀 46,351評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像碱蒙,于是被迫代替她去往敵國和親荠瘪。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,509評論 2 348

推薦閱讀更多精彩內容