fecth

https://blog.csdn.net/qq_24713843/article/details/78866713

這篇文章很不錯(cuò)!

export function post(url,paramsObjs) {
  var result = fetch(url, {
    method: 'POST',
    mode : 'no-cors',
    // credentials: 'include',
    headers: {
      'Accept': 'application/json, text/plain, */*',
      'Content-Type': 'application/x-www-form-urlencoded'
    }, // 注意 post 時(shí)候參數(shù)的形式 body: "a=100&b=200" });
    body: obj2params(paramsObjs)
  })
  return result;
export function get(url) {
  var result = fetch(url,{
    credentials:'include',
    headers:{
      "Accept":"application/json,text/plain.*/*"
    }
  });
  return result;
}

fecth返回的數(shù)據(jù)可以用.then .catch 來處理

resultHandle(result){
    result.then(res=>{
      if(res.ok){
        return res.json()
      }else{
        console.log("當(dāng)前城市:"+this.props.cityName);
        console.log("當(dāng)前頁碼:"+this.state.page);
        return ListData;
      }
    }).then(json=>{
      const data = json.data;
      const hasMore = json.hasMore;
      this.setState({
        hasMore:hasMore,
        data:this.state.data.concat(data),
        isLoadingMore:false
      })
    }).catch(err=>{
      console.log(err.message);
    })
  }
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 179,045評(píng)論 25 709
  • 在此特此聲明:一下所有鏈接均來自互聯(lián)網(wǎng),在此記錄下我的查閱學(xué)習(xí)歷程,感謝各位原創(chuàng)作者的無私奉獻(xiàn) ! 技術(shù)一點(diǎn)一點(diǎn)積...
    遠(yuǎn)航的移動(dòng)開發(fā)歷程閱讀 11,544評(píng)論 12 197
  • 文/Alexia ?一個(gè)樸實(shí),平凡,正直的農(nóng)民,在他人生的前35年以土地為生,之后轉(zhuǎn)做生意人,一直勤勤懇懇的工作至...
    小敏紙閱讀 1,623評(píng)論 8 20
  • 本來晚上一直是我的碼字時(shí)間,今天有個(gè)姑娘晚飯時(shí)間臨時(shí)找我,讓我?guī)兔匆黄模?0萬字,提意見,她要大修,時(shí)間很趕。...
    Yuki_云閱讀 207評(píng)論 0 0
  • 那日,僅一眼,就淪陷在你如水的眸子里 那一刻,不想去在乎什么背景 什么家庭 只想悄悄地走進(jìn)你的心房,聲輕步平 你是...
    鮫人10閱讀 457評(píng)論 2 4

友情鏈接更多精彩內(nèi)容