您好,登錄后才能下訂單哦!
這篇文章主要介紹“React Hooks 在 SSR 模式下有哪些常見問題”,在日常操作中,相信很多人在React Hooks 在 SSR 模式下有哪些常見問題問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”React Hooks 在 SSR 模式下有哪些常見問題”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
SSR 是在 node 環(huán)境下運行 React 代碼,而此時 window、document、navigator 等全局屬性沒有。如果直接使用了這些屬性,就會報錯 window is not defined, document is not defined, navigator is not defined 等。
常見的錯誤用法是在 Hooks 執(zhí)行過程中,直接使用了 document 等全局屬性。
import React, { useState } from 'react'; export default () => { const [state, setState] = useState(document.visibilityState); return state; }
1.將訪問 DOM/BOM 的方法放在 useEffect/useLayoutEffect 中(服務(wù)端不會執(zhí)行),避免服務(wù)端執(zhí)行時報錯,例如:
import React, { useState, useEffect } from 'react'; export default () => { const [state, setState] = useState(); useEffect(()=>{ setState(document.visibilityState); }, []); return state; }
2.通過 isBrowser[2] 來做環(huán)境判斷
import React, { useState } from 'react'; function isBrowser() { return !!(typeof window !== 'undefined' && window.document && window.document.createElement); } export default () => { const [state, setState] = useState(isBrowser() && document.visibilityState); return state; }
如果使用了 useLayoutEffect,在 SSR 模式下,會出現(xiàn)以下警告
?? Warning: useLayoutEffect does nothing on the server, because its effect cannot be encoded into the server renderer's output format. This will lead to a mismatch between the initial, non-hydrated UI and the intended UI. To avoid this, useLayoutEffect should only be used in components that render exclusively on the client. See https://fb.me/react-uselayouteffect-SSR for common fixes.
鴻蒙官方戰(zhàn)略合作共建——HarmonyOS技術(shù)社區(qū)
使用 useEffect 代替 useLayoutEffect(廢話)
根據(jù)環(huán)境動態(tài)的指定是使用 useEffect 還是 useLayoutEffect。這是來自社區(qū)的一種 hack 解決方案,目前在 react-redux[3]、react-use[4]、react-beautiful-dnd[5] 均使用的這種方案。
import { useLayoutEffect, useEffect } from 'react'; const useIsomorphicLayoutEffect = isBrowser() ? useLayoutEffect : useEffect; export default useIsomorphicLayoutEffect;
1.不要在非 useEffect/useLayoutEffect 中,直接使用 DOM/BOM 屬性
2.在非 useEffect/useLayoutEffect 使用 DOM/BOM 屬性時,使用 isBrowser 判斷是否在瀏覽器環(huán)境執(zhí)行
3.如果某個 Hooks 需要接收 DOM/BOM 屬性,需要支持函數(shù)形式傳參。以 ahooks 的 useEventListener 舉例,必須支持函數(shù)形式來指定 target 屬性。
import React, { useState } from 'react'; import { useEventListener } from 'ahooks'; export default () => { const [value, setValue] = useState(0); const clickHandler = () => { setValue(value + 1); }; useEventListener( 'click', clickHandler, { - target: document.getElemenetById('click-btn') + target: () => document.getElemenetById('click-btn') } ); return ( <button id="click-btn" type="button"> You click {value} times </button> ); };
4.使用 useIsomorphicLayoutEffect 來代替 useLayoutEffect
參考資料
fix: useDocumentVisiblility support SSR[6]
UmiJS 服務(wù)端渲染[7]
useLayoutEffect and SSR[8]
參考資料
[1]服務(wù)端渲染(SSR):
https://umijs.org/zh-CN/docs/SSR#服務(wù)端渲染(SSR)
[2]isBrowser:
https://github.com/alibaba/hooks/blob/master/packages/hooks/src/utils/canUseDom.ts
[3]react-redux:
https://github.com/reduxjs/react-redux/blob/d16262582b2eeb62c05313fca3eb59dc0b395955/src/components/connectAdvanced.js#L40
[4]react-use:
https://github.com/streamich/react-use/blob/master/src/useIsomorphicLayoutEffect.ts
[5]react-beautiful-dnd:
https://github.com/atlassian/react-beautiful-dnd/blob/master/src/view/use-isomorphic-layout-effect.js
[6]fix: useDocumentVisiblility support SSR:
https://github.com/alibaba/hooks/pull/935/files
[7]UmiJS 服務(wù)端渲染:
https://umijs.org/zh-CN/docs/SSR#window-is-not-defined-document-is-not-defined-navigator-is-not-defined
[8]useLayoutEffect and SSR:
https://medium.com/@alexandereardon/uselayouteffect-and-SSR-192986cdcf7a
到此,關(guān)于“React Hooks 在 SSR 模式下有哪些常見問題”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。