国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

首頁(yè) web前端 js教程 React 伺服器功能備忘單

React 伺服器功能備忘單

Dec 22, 2024 pm 12:31 PM

A React server feature cheat sheet

React 伺服器功能基礎(chǔ)知識(shí)

  • 伺服器元件(React Server Component,RSC):運(yùn)行在伺服器上並像SSR一樣渲染到客戶端的元件。
  • 伺服器功能(又稱伺服器操作):僅在伺服器上執(zhí)行並將資訊傳送到客戶端的功能。

指令

  • 'use client':如果您使用的是啟用「伺服器元件」的環(huán)境,則應(yīng)在檔案頂部標(biāo)記 use client 以將其標(biāo)記為用戶端元件。
  • ‘use server’:如果你考慮改變伺服器上的信息,你應(yīng)該在伺服器元件或檔案的函數(shù)體頂部標(biāo)記 use server 指令,以僅在伺服器上操作。

伺服器元件

  • RSC 沒(méi)有狀態(tài),也沒(méi)有生命週期。您不能在伺服器元件上使用任何鉤子函數(shù)(useState、useEffect 等)。
  • RSC 可以有非同步函數(shù)。
  • RSC可以具有伺服器功能。但您必須在函數(shù)體頂部標(biāo)記“使用伺服器”。
  • RSC 可以在伺服器元件和客戶端元件中擁有子元件。
  • RSC 無(wú)法執(zhí)行任何瀏覽器 API。
  • 您的 RSC 可以將任何類型的 props 傳遞給 RSC。也可以將 props 類型傳遞給客戶端元件。檢查下面的指令類型表。
import marked from 'marked'; // Not included in bundle
import sanitizeHtml from 'sanitize-html'; // Not included in bundle

async function Page({page}) {
  // NOTE: loads *during* render, when the app is built.
  const content = await file.readFile(`${page}.md`);

  return <div>{sanitizeHtml(marked(content))}</div>;
}

伺服器功能

  • 定義時(shí),函式體或檔案中必須有「use server」指令。
  • 您可以在函數(shù)體上運(yùn)行任何伺服器功能。
  • 您無(wú)法在函數(shù)體上執(zhí)行瀏覽器API。
  • 您可以在伺服器和客戶端上呼叫伺服器函數(shù)。
  • 您可以傳回有限制的值。檢查下面的指令類型表。

在伺服器元件中宣告伺服器函數(shù)

import Button from './Button';

function EmptyNote () {
  async function createNoteAction() {
    // Server Function
    'use server';

    await db.notes.create();
  }

  return <Button onClick={createNoteAction}/>;
}

在單獨(dú)的檔案中聲明伺服器功能

"use server";

export async function updateName(name) {
  if (!name) {
    return {error: 'Name is required'};
  }
  await db.users.updateName(name);
}

在客戶端元件中使用伺服器功能

import marked from 'marked'; // Not included in bundle
import sanitizeHtml from 'sanitize-html'; // Not included in bundle

async function Page({page}) {
  // NOTE: loads *during* render, when the app is built.
  const content = await file.readFile(`${page}.md`);

  return <div>{sanitizeHtml(marked(content))}</div>;
}

指令中句柄值類型的比較

  • 使用客戶端:將 prop 類型從伺服器元件傳遞到客戶端元件。
  • use server: Server函數(shù)的回傳類型
Type use client use server Notes
string ? ? both string value and iterables are supported.
number ? ?
bigint ? ?
boolean ? ?
undefined ? ?
null ? ?
Array ? ? Only available in the item of serializable list.
Map ? ? Only available in the item of serializable list.
Set ? ? Only available in the item of serializable list.
TypedArray ? ?
ArrayBuffer ? ?
Date ? ?
object ? ? Support only plain object(object initializers or JSON), null prototype not supported.
Promises ? ? Only available in the serializable list.
ReactNode ? ? Only Server Component can send it to Client Component via props.
FormData ? ? Only server functions can return FormData instance.
symbol ?? ?? Only symbols registered in the global Symbol registry via Symbol.for
function ?? ?? Only server functions allowed.
class ? ? Any instance objects are not serializable.
  • 其他型別和實(shí)例不可用。

快樂(lè)反應(yīng)!

以上是React 伺服器功能備忘單的詳細(xì)內(nèi)容。更多資訊請(qǐng)關(guān)注PHP中文網(wǎng)其他相關(guān)文章!

本網(wǎng)站聲明
本文內(nèi)容由網(wǎng)友自願(yuàn)投稿,版權(quán)歸原作者所有。本站不承擔(dān)相應(yīng)的法律責(zé)任。如發(fā)現(xiàn)涉嫌抄襲或侵權(quán)的內(nèi)容,請(qǐng)聯(lián)絡(luò)admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費(fèi)脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅(qū)動(dòng)的應(yīng)用程序,用於創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費(fèi)的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費(fèi)的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強(qiáng)大的PHP整合開(kāi)發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺(jué)化網(wǎng)頁(yè)開(kāi)發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級(jí)程式碼編輯軟體(SublimeText3)

JavaScript與Java:您應(yīng)該學(xué)到哪種語(yǔ)言? JavaScript與Java:您應(yīng)該學(xué)到哪種語(yǔ)言? Jun 10, 2025 am 12:05 AM

javascriptisidealforwebdevelogment,whilejavasuitslarge-scaleapplicationsandandandroiddevelopment.1)javascriptexceleatingingingingingingingbeatingwebexperienceswebexperienceswebexperiencesandfull-stackdeevermentwithnode.js.2)

在JavaScript中使用哪些評(píng)論符號(hào):一個(gè)明確的解釋 在JavaScript中使用哪些評(píng)論符號(hào):一個(gè)明確的解釋 Jun 12, 2025 am 10:27 AM

在JavaScript中,選擇單行註釋(//)還是多行註釋(//)取決於註釋的目的和項(xiàng)目需求:1.使用單行註釋進(jìn)行快速、內(nèi)聯(lián)的解釋;2.使用多行註釋進(jìn)行詳細(xì)的文檔說(shuō)明;3.保持註釋風(fēng)格的一致性;4.避免過(guò)度註釋;5.確保註釋與代碼同步更新。選擇合適的註釋風(fēng)格有助於提高代碼的可讀性和可維護(hù)性。

JavaScript評(píng)論的最終指南:增強(qiáng)代碼清晰度 JavaScript評(píng)論的最終指南:增強(qiáng)代碼清晰度 Jun 11, 2025 am 12:04 AM

是的,javascriptcommentsarenectary和shouldshouldshouldseffectional.1)他們通過(guò)codeLogicAndIntentsgudedepleders,2)asevitalincomplexprojects,和3)handhanceClaritywithOutClutteringClutteringThecode。

Java vs. JavaScript:清除混亂 Java vs. JavaScript:清除混亂 Jun 20, 2025 am 12:27 AM

Java和JavaScript是不同的編程語(yǔ)言,各自適用於不同的應(yīng)用場(chǎng)景。 Java用於大型企業(yè)和移動(dòng)應(yīng)用開(kāi)發(fā),而JavaScript主要用於網(wǎng)頁(yè)開(kāi)發(fā)。

JavaScript評(píng)論:簡(jiǎn)短說(shuō)明 JavaScript評(píng)論:簡(jiǎn)短說(shuō)明 Jun 19, 2025 am 12:40 AM

JavascriptconcommentsenceenceEncorenceEnterential gransimenting,reading and guidingCodeeXecution.1)單inecommentsareusedforquickexplanations.2)多l(xiāng)inecommentsexplaincomplexlogicorprovideDocumentation.3)

掌握J(rèn)avaScript評(píng)論:綜合指南 掌握J(rèn)avaScript評(píng)論:綜合指南 Jun 14, 2025 am 12:11 AM

評(píng)論arecrucialinjavascriptformaintainingclarityclarityandfosteringCollaboration.1)heelpindebugging,登機(jī),andOnderStandingCodeeVolution.2)使用林格forquickexexplanations andmentmentsmmentsmmentsmments andmmentsfordeffordEffordEffordEffordEffordEffordEffordEffordEddeScriptions.3)bestcractices.3)bestcracticesincracticesinclud

JavaScript數(shù)據(jù)類型:深度潛水 JavaScript數(shù)據(jù)類型:深度潛水 Jun 13, 2025 am 12:10 AM

JavaScripthasseveralprimitivedatatypes:Number,String,Boolean,Undefined,Null,Symbol,andBigInt,andnon-primitivetypeslikeObjectandArray.Understandingtheseiscrucialforwritingefficient,bug-freecode:1)Numberusesa64-bitformat,leadingtofloating-pointissuesli

JavaScript與Java:開(kāi)發(fā)人員的全面比較 JavaScript與Java:開(kāi)發(fā)人員的全面比較 Jun 20, 2025 am 12:21 AM

JavaScriptIspreferredforredforwebdevelverment,而Javaisbetterforlarge-ScalebackendsystystemsandSandAndRoidApps.1)JavascriptexcelcelsincreatingInteractiveWebexperienceswebexperienceswithitswithitsdynamicnnamicnnamicnnamicnnamicnemicnemicnemicnemicnemicnemicnemicnemicnddommanipulation.2)

See all articles