了解react中獲取數(shù)據(jù)的方法?這個(gè)問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個(gè)問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
創(chuàng)新互聯(lián)公司專注于洛龍網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供洛龍營(yíng)銷型網(wǎng)站建設(shè),洛龍網(wǎng)站制作、洛龍網(wǎng)頁(yè)設(shè)計(jì)、洛龍網(wǎng)站官網(wǎng)定制、小程序開發(fā)服務(wù),打造洛龍網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供洛龍網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。react中獲取數(shù)據(jù)的方法:1、使用生命周期方法請(qǐng)求數(shù)據(jù);2、使用Hooks獲取數(shù)據(jù);3、使用suspense獲取數(shù)據(jù)。
react中獲取數(shù)據(jù)的方法:
1.使用生命周期方法請(qǐng)求數(shù)據(jù)
應(yīng)用程序Employees.org做兩件事:
1.一進(jìn)入程序就獲取20名員工。
2.可以通過過濾條件來篩選員工。
在實(shí)現(xiàn)這兩個(gè)需求之前,先來回顧一下react 類組件的2個(gè)生命周期方法:
componentDidMount()
:組件掛載后執(zhí)行
componentDidUpdate(prevProps)
:當(dāng) props 或 state 改變時(shí)執(zhí)行
組件
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í)重新渲染。
如下示例所示,在
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) { returnFetching employees....; } return; }
打開codesandbox
可以查看useEffect()如何獲取數(shù)據(jù)。
可以看到使用 Hooks 的
在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) { returnFetching employees....; } return; }
從useEmployeesFetch()
提到所需要的值。組件
更好的是,可以在需要獲取雇員的任何其他組件中重用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ù)獲取。
佛山vi設(shè)計(jì)/tupian/20230522/ 豌豆資源搜索大全https://55wd.com
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就知道“掛起”
較大的優(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é)泄露到組件中。
標(biāo)準(zhǔn)狀態(tài)
如果請(qǐng)求了多個(gè)獲取操作,那么Suspense會(huì)使用新的獲取請(qǐng)求。
4.總結(jié)
很長(zhǎng)一段時(shí)間以來,生命周期方法一直是獲取數(shù)據(jù)方式的解決方案。然而,使用它們獲取數(shù)據(jù)會(huì)有很多樣板代碼、重復(fù)和可重用性方面的問題。
感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)react中獲取數(shù)據(jù)的方法大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。