真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

React中如何獲取數(shù)據(jù)

React中如何獲取數(shù)據(jù),針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。

為長(zhǎng)樂等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及長(zhǎng)樂網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、長(zhǎng)樂網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!

1、使用生命周期方法請(qǐng)求數(shù)據(jù)

應(yīng)用程序Employees.org做兩件事:

(1).一進(jìn)入程序就獲取20名員工。

(2).可以通過過濾條件來篩選員工。

在實(shí)現(xiàn)這兩個(gè)需求之前,先來回顧一下React 類組件的2個(gè)生命周期方法:

  1. 鴻蒙官方戰(zhàn)略合作共建——HarmonyOS技術(shù)社區(qū)

  2.  componentDidMount():組件掛載后執(zhí)行

  3.  componentDidUpdate(prevProps):當(dāng) props 或 state 改變時(shí)執(zhí)行

組件 使用上面兩個(gè)生命周期方法實(shí)現(xiàn)獲取邏輯:

import EmployeesList from "./EmployeesList";  import { fetchEmployees } from "./fake-fetch";  class EmployeesPage extends Component {    constructor(props) {      super(props);      this.state = { employees: [], isFetching: true };    }    componentDidMount() {      this.fetch();    }    componentDidUpdate(prevProps) {      if (prevProps.query !== this.props.query) {        this.fetch();      }    }    async fetch() {      this.setState({ isFetching: true });      const employees = await fetchEmployees(this.props.query);      this.setState({ employees, isFetching: false });    }    render() {      const { isFetching, employees } = this.state;      if (isFetching) {        return 
獲取員工數(shù)據(jù)中...
;      }      return ;    }  }

打開codesandbox可以查看 獲取過程。

有一個(gè)獲取數(shù)據(jù)的異步方法fetch()。在獲取請(qǐng)求完成后,使用 setState 方法來更新employees。

this.fetch()在componentDidMount()生命周期方法中執(zhí)行:它在組件初始渲染時(shí)獲取員工數(shù)據(jù)。

當(dāng)咱們關(guān)鍵字進(jìn)行過濾時(shí),將更新 props.query 。每當(dāng) props.query 更新,componentDidUpdate()就會(huì)重新執(zhí)行this.fetch()。

雖然生命周期方法相對(duì)容易掌握,但是基于類的方法存在樣板代碼使重用性變得困難。

優(yōu)點(diǎn)

這種方法很容易理解:componentDidMount()在第一次渲染時(shí)獲取數(shù)據(jù),而componentDidUpdate()在props更新時(shí)重新獲取數(shù)據(jù)。

缺點(diǎn)

樣板代碼

基于類的組件需要繼承React.Component,在構(gòu)造函數(shù)中執(zhí)行 super(props) 等等。

this

使用 this 關(guān)鍵字很麻煩。

代碼重復(fù)

componentDidMount()和componentDidUpdate()中的代碼大部分是重復(fù)的。

很難重用

員工獲取邏輯很難在另一個(gè)組件中重用。

2、使用 Hooks 獲取數(shù)據(jù)

Hooks 是基于類獲取數(shù)據(jù)方式更好的選擇。作為簡(jiǎn)單的函數(shù),Hooks 不像類組件那樣還要繼承,并且也更容易重用。

簡(jiǎn)單回憶一下useEffect(callback[, deps]) Hook 。這個(gè)hook在掛載后執(zhí)行callback ,并且當(dāng)依賴項(xiàng)deps發(fā)生變化時(shí)重新渲染。

如下示例所示,在中使用useEffect()獲取員工數(shù)據(jù):

import EmployeesList from "./EmployeesList";  import { fetchEmployees } from "./fake-fetch";  function EmployeesPage({ query }) {    const [isFetching, setFetching] = useState(false);    const [employees, setEmployees] = useState([]);    useEffect(function fetch() {      (async function() {        setFetching(true);        setEmployees(await fetchEmployees(query));        setFetching(false);      })();    }, [query]);    if (isFetching) {      return 
Fetching employees....
;    }    return ;  }

打開codesandbox可以查看useEffect()如何獲取數(shù)據(jù)。

可以看到使用 Hooks 的 比使用類組件方式簡(jiǎn)單了很多。

函數(shù)組件中的useEffect(fetch, [query]),初始渲染之后執(zhí)行fetch回調(diào)。此外,當(dāng)依賴項(xiàng) query 更新時(shí)也會(huì)重新執(zhí)行 fetch 方法。

但仍有優(yōu)化的空間。Hooks 允許咱們從組件中提取雇員獲取邏輯,來看看:

import React, { useState } from 'react';  import EmployeesList from "./EmployeesList";  import { fetchEmployees } from "./fake-fetch";  function useEmployeesFetch(query) { // 這行有變化    const [isFetching, setFetching] = useState(false);    const [employees, setEmployees] = useState([]);    useEffect(function fetch {      (async function() {        setFetching(true);        setEmployees(await fetchEmployees(query));        setFetching(false);      })();    }, [query]);    return [isFetching, employees];  }  function EmployeesPage({ query }) {    const [employees, isFetching] = useEmployeesFetch(query); // 這行有變化    if (isFetching) {      return 
Fetching employees....
;    }    return ;  }

從useEmployeesFetch()提到所需要的值。組件沒有相應(yīng)的獲取邏輯,只負(fù)責(zé)渲染界面工作。

更好的是,可以在需要獲取雇員的任何其他組件中重用useEmployeesFetch()。

優(yōu)點(diǎn)

清楚和簡(jiǎn)單

Hooks沒有樣板代碼,因?yàn)樗鼈兪瞧胀ǖ暮瘮?shù)。

可重用性

在 Hooks 中實(shí)現(xiàn)的獲取數(shù)據(jù)邏輯很容易重用。

缺點(diǎn)

需要前置知識(shí)

Hooks 有點(diǎn)違反直覺,因此在使用之前必須理解它們,Hooks 依賴于閉包,所以一定要很好地了解它們。

必要性

使用Hooks,仍然必須使用命令式方法來執(zhí)行數(shù)據(jù)獲取。

3、使用 suspense 獲取數(shù)據(jù)

Suspense 提供了一種聲明性方法來異步獲取React中的數(shù)據(jù)。

注意:截至2019年11月,Suspense 處于試驗(yàn)階段。

包裝執(zhí)行異步操作的組件:

Fetch in progress...}>      

數(shù)據(jù)獲取時(shí),Suspense將顯示fallback中的內(nèi)容,當(dāng)獲取完數(shù)據(jù)后,Suspense將使用獲取到數(shù)據(jù)渲染

來看看怎么使用Suspense:

import React, { Suspense } from "react";  import EmployeesList from "./EmployeesList";  function EmployeesPage({ resource }) {    return (      Fetching employees....}>                  );  }  function EmployeesFetch({ resource }) {    const employees = resource.employees.read();    return ;  }

打開codesandbox可以查看Suspense如何獲取數(shù)據(jù)。

使用Suspense處理組件將獲取到數(shù)據(jù)傳遞給組件。

中的resource.employees是一個(gè)特殊包裝的promise,它在背后與Suspense進(jìn)行通信。這樣,Suspense就知道“掛起” 的渲染要花多長(zhǎng)時(shí)間,并且當(dāng)資源準(zhǔn)備就緒時(shí),就開始執(zhí)行渲染工作。

最大的優(yōu)點(diǎn)是:Suspense 以聲明性和同步的方式處理異步操作。組件沒有復(fù)雜數(shù)據(jù)獲取邏輯,而是以聲明方式使用資源來渲染內(nèi)容。在組件內(nèi)部沒有生命周期,沒有 Hooks,async/await,沒有回調(diào):僅展示界面。

優(yōu)點(diǎn)

聲明式

Suspense 以聲明的方式在React中執(zhí)行異步操作。

簡(jiǎn)單

聲明性代碼使用起來很簡(jiǎn)單,這些組件沒有復(fù)雜的數(shù)據(jù)獲取邏輯。

松耦合與獲取實(shí)現(xiàn)

使用Suspense的組件看不出如何獲取數(shù)據(jù):使用 REST 或 GraphQL。Suspense設(shè)置一個(gè)邊界,保護(hù)獲取細(xì)節(jié)泄露到組件中。

關(guān)于React中如何獲取數(shù)據(jù)問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。


文章名稱:React中如何獲取數(shù)據(jù)
文章地址:http://weahome.cn/article/gshosh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部