WHAT - React 学习系列(二)

目录

  • 一、官方介绍
  • 二、框架具体对比
    • 1. Next.js(Pages Router)
    • 2. Remix
    • 3. Gatsby
    • 4. Expo(用于原生应用)
    • 5. Next.js(App Router)
      • Next.js App Router
        • 主要特性
        • 与 Pages Router 的对比
      • 具体使用示例
        • 创建 App Router 项目
        • 目录结构示例
        • 示例代码
      • 总结

这一篇主要介绍React在线编码和框架。

一、官方介绍

Outside of the React documentation, there are many online sandboxes that support React: for example, CodeSandbox, StackBlitz, or CodePen.

If you want to build a new app or a new website fully with React, we recommend picking one of the React-powered frameworks popular in the community. By starting with a framework, you can get started with React quickly, and avoid essentially building your own framework later.

These frameworks support all the features(such as code-splitting, routing, data fetching, and generating HTML) you need to deploy, and scale your app in production, and are working towards supporting our full-stack architecture vision.

Production-grade React frameworks:

  1. Next.js (Pages Router): npx create-next-app@latest
  2. Remix: npx create-remix
  3. Gatsby: npx create-gatsby
  4. Expo(for native apps): npx create-expo-app
  5. Bleeding-edge React frameworks
  6. Next.js (App Router): npx create-next-app@latest my-app --experimental-app

Next.js’ Pages Router is a full-stack React framework. If you’re new to Next.js, check out the learn Next.js course. Next.js is maintained by Vercel. You can deploy a Next.js app to any Node.js or serverless hosting, or to your own server. Next.js also supports a static export which doesn’t require a server.

Remix is a full-stack React framework with nested routing. It lets you break your app into nested parts that can load data in parallel and refresh in response to the user actions. If you’re new to Remix, check out the Remix blog tutorial (short) and app tutorial (long). Remix is maintained by Shopify. When you create a Remix project, you need to pick your deployment target. You can deploy a Remix app to any Node.js or serverless hosting by using or writing an adapter.

Gatsby is a React framework for fast CMS-backed websites. Its rich plugin ecosystem and its GraphQL data layer simplify integrating content, APIs, and services into one website. If you’re new to Gatsby, check out the Gatsby tutorial. Gatsby is maintained by Netlify. You can deploy a fully static Gatsby site to any static hosting. If you opt into using server-only features, make sure your hosting provider supports them for Gatsby.

Expo is a React framework that lets you create universal Android, iOS, and web apps with truly native UIs. It provides an SDK for React Native that makes the native parts easier to use. If you’re new to Expo, check out the Expo tutorial. Expo is maintained by Expo (the company). Building apps with Expo is free, and you can submit them to the Google and Apple app stores without restrictions. Expo additionally provides opt-in paid cloud services.

Next.js’s App Router is a redesign of the Next.js APIs aiming to fulfill the React team’s full-stack architecture vision. It lets you fetch data in asynchronous components that run on the server or even during the build.
Next.js is maintained by Vercel. You can deploy a Next.js app to any Node.js or serverless hosting, or to your own server. Next.js also supports static export which doesn’t require a server.

二、框架具体对比

每个生产级React框架都有不同的用途和独特的功能。以下是详细的比较:

1. Next.js(Pages Router)

适用于SSR、SSG和混合应用。

  • 命令: npx create-next-app@latest
  • 用途: 服务端渲染(SSR)、静态站点生成(SSG)和客户端渲染(CSR)。
  • 主要特性:
    • 基于文件的路由。
    • 自动代码分割。
    • 内置API路由。
    • 静态和动态渲染。
    • 增量静态再生。
    • 支持全栈开发。
    • 快速刷新(Fast Refresh)用于快速开发。
  • 使用场景: 适用于各种Web应用、博客、电商和需要SSR的复杂Web应用。

2. Remix

注重快速用户体验和流畅导航。

  • 命令: npx create-remix
  • 用途: 通过优化页面加载速度和流畅过渡来提升用户体验。
  • 主要特性:
    • 以速度为重点的服务端渲染。
    • 嵌套路由和布局。
    • 内置数据加载和动作处理。
    • 渐进增强。
    • 支持静态和动态渲染。
    • 细粒度缓存控制。
  • 使用场景: 需要快速加载和流畅导航的应用、内容丰富的网站、具有复杂路由的动态应用。

3. Gatsby

适合性能和SEO要求高的静态站点。

  • 命令: npx create-gatsby
  • 用途: 以性能和SEO为重点的静态站点生成。
  • 主要特性:
    • 从任何来源获取数据(GraphQL)。
    • 图片优化。
    • 插件生态系统。
    • 丰富的插件和主题支持。
    • 预渲染HTML以实现快速初始加载。
    • 渐进式Web应用(PWA)功能。
  • 使用场景: 博客、营销网站、文档站点,以及任何需要SEO和高性能的网站。

4. Expo(用于原生应用)

最适合快速构建跨平台移动应用。

  • 命令: npx create-expo-app
  • 用途: 构建适用于iOS和Android的React Native应用。
  • 主要特性:
    • 管理和裸工作流选项。
    • 无线更新(Over-the-air updates)。
    • 通过Expo SDK访问原生API。
    • 简单易用,快速上手。
    • 测试和调试工具。
  • 使用场景: 需要快速在iOS和Android上部署,并访问设备原生功能的移动应用。

5. Next.js(App Router)

Next.js 的 App Router 是在 Next.js 13 中引入的新特性,它提供了一种更灵活、更强大的路由方式,旨在改进和替代传统的 Pages Router。以下是对 Next.js App Router 的详细说明和与传统 Pages Router 的比较:

Next.js App Router

主要特性
  1. 文件夹级别路由(Folder-based Routing):
    • 使用文件夹结构来定义应用程序的路由,而不是单纯的文件。
    • 支持嵌套路由和布局。

目录结构:

/app/dashboard/settingspage.tsxlayout.tsx/aboutpage.tsxlayout.tsxpage.tsx

app/page.tsx:

export default function HomePage() {return <h1>Home Page</h1>;
}

app/about/page.tsx:

export default function AboutPage() {return <h1>About Page</h1>;
}
  1. 布局(Layouts)和嵌套布局(Nested Layouts):
    • 允许在不同层级定义布局文件,实现复杂页面结构。
    • 布局文件可以共享状态和 UI 组件,简化应用结构。

app/layout.tsx:

export default function RootLayout({ children }) {return (<html><head /><body><header>Global Header</header>{children}</body></html>);
}

app/dashboard/layout.tsx:

export default function DashboardLayout({ children }) {return (<div><nav>Dashboard Navigation</nav><div>{children}</div></div>);
}
  1. 服务器组件(Server Components):
    • 提供了一种新的组件类型,仅在服务器端渲染,提高性能和安全性。
    • 可以直接在组件中获取数据,而无需在客户端进行额外的数据获取。

app/dashboard/settings/page.tsx:

export const revalidate = 60; // Revalidate data every 60 secondsexport default async function SettingsPage() {const data = await fetchData();return <div>{data}</div>;
}async function fetchData() {const res = await fetch('https://api.example.com/data');const json = await res.json();return JSON.stringify(json);
}
  1. 并行路由(Parallel Routing):
    • 允许在同一页面内定义多个并行路由,增强用户体验。
    • 适用于需要同时加载多个部分的复杂页面。

并行路由(Parallel Routing)是 Next.js App Router 的一个强大特性,它允许在同一个页面中同时显示多个独立的内容区域,这些区域可以通过不同的路径进行渲染。通过并行路由,你可以更灵活地管理复杂的页面布局,提升用户体验。

假设我们有一个页面,它需要同时显示两个独立的内容区域:一个用于显示用户信息,另一个用于显示通知。这两个区域可以独立加载和渲染。

目录结构

/app/parallel@userpage.tsx@notificationspage.tsxlayout.tsxpage.tsx

并行路由布局文件

app/layout.tsx:

export default function RootLayout({ children }) {return (<html><head /><body>{children}</body></html>);
}

app/parallel/layout.tsx:

export default function ParallelLayout({ user, notifications }) {return (<div><div>{user}</div><div>{notifications}</div></div>);
}

并行路由内容页面

app/parallel/@user/page.tsx:

export default function UserPage() {return <div>User Information</div>;
}

app/parallel/@notifications/page.tsx:

export default function NotificationsPage() {return <div>Notifications</div>;
}

主页面文件

app/page.tsx:

import Link from 'next/link';export default function HomePage() {return (<div><h1>Home Page</h1><Link href="/parallel">Go to Parallel Page</Link></div>);
}

工作原理

  • app/parallel/@user/page.tsxapp/parallel/@notifications/page.tsx 定义了两个独立的内容区域。
  • app/parallel/layout.tsx 用于渲染这两个区域。
  • app/parallel/layout.tsx 文件中,usernotifications 是并行路由插槽。
  • 这些插槽分别渲染 app/parallel/@user/page.tsxapp/parallel/@notifications/page.tsx 文件的内容。
  • 当用户访问 /parallel 路由时,ParallelLayout 会同时渲染 UserPageNotificationsPage,并在页面中显示它们的内容。

并行路由允许在同一页面中并行渲染多个独立的内容区域,这在构建复杂的用户界面时非常有用。通过这种方式,你可以更高效地管理页面布局,提高应用的可维护性和用户体验。

  1. 界面隔离(Isolated Interfaces):
    • 使用新的界面隔离机制,防止组件之间的意外依赖和副作用。
    • 提高组件的可维护性和可测试性。

app/dashboard/settings/page.tsx:

'use client';import { useState } from 'react';export default function SettingsPage() {const [setting, setSetting] = useState('');const handleChange = (e) => {setSetting(e.target.value);};return (<div><input value={setting} onChange={handleChange} /><p>Current setting: {setting}</p></div>);
}

示例代码通过定义单独的文件并使用严格的组件分离。

  1. 全新的数据获取机制:
    • 支持 fetch 和其他数据获取方法直接在服务器组件中使用。
    • 提供了更灵活的数据获取方式。

app/dashboard/settings/page.tsx:

export default async function SettingsPage() {const data = await fetchData();return <div>{data}</div>;
}async function fetchData() {const res = await fetch('https://api.example.com/data', {next: { revalidate: 60 }});const json = await res.json();return JSON.stringify(json);
}
与 Pages Router 的对比
  • 文件结构:

    • Pages Router: 基于文件的路由,页面文件直接放置在 pages 目录中。
    • App Router: 基于文件夹的路由,使用 app 目录,路由通过文件夹结构定义,支持更复杂的布局和路由结构。
  • 布局管理:

    • Pages Router: 需要在每个页面中手动引入布局组件。
    • App Router: 使用布局文件夹,自动应用布局,支持嵌套布局。
  • 服务器组件:

    • Pages Router: 主要使用客户端组件,数据获取通常在 getServerSidePropsgetStaticProps 中完成。
    • App Router: 引入服务器组件,允许在服务器端直接进行数据获取,提高性能和安全性。
  • 并行路由:

    • Pages Router: 需要手动管理并行路由和状态。
    • App Router: 提供内置支持,更容易实现复杂的页面结构。

具体使用示例

创建 App Router 项目
npx create-next-app@latest my-app --experimental-app
cd my-app
目录结构示例
/app/dashboard/settingspage.tsxlayout.tsx/aboutpage.tsxlayout.tsxpage.tsx
  • app/layout.tsx: 顶级布局文件,应用于所有页面。
  • app/page.tsx: 应用的主页。
  • app/dashboard/layout.tsx: 仪表板的布局,应用于仪表板下的所有页面。
  • app/dashboard/settings/page.tsx: 仪表板设置页面。
示例代码

app/layout.tsx:

export default function RootLayout({ children }) {return (<html><head /><body>{children}</body></html>);
}

app/dashboard/layout.tsx:

export default function DashboardLayout({ children }) {return (<div><nav>/* Dashboard navigation */</nav><main>{children}</main></div>);
}

app/dashboard/settings/page.tsx:

export default function SettingsPage() {return <h1>Dashboard Settings</h1>;
}

总结

Next.js 的 App Router 提供了更强大的路由和布局管理功能,通过引入服务器组件、并行路由和新的数据获取机制,使得开发复杂的 React 应用更加高效和灵活。对于希望利用这些新特性构建现代化 Web 应用的开发者来说,App Router 是一个值得探索和使用的工具。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/29211.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

文生视频AI工具汇总推荐

目录 Runway Gen-2 Pictory Pika Sora by OpenAI Clipchamp Etna 百度智能云 阿里云视频智能 完整使用报告 在当前的AI技术领域&#xff0c;视频生成工具的发展迅速&#xff0c;为用户提供了从文本到视频的多样化生成方式。以下是一些值得推荐的文生视频AI工具&#x…

NAND闪存市场彻底复苏

在全球内存市场逐渐走出阴霾、迎来复苏曙光之际&#xff0c;日本存储巨头铠侠&#xff08;Kioxia&#xff09;凭借敏锐的市场洞察力和及时的战略调整&#xff0c;成功实现了从生产紧缩到全面复苏的华丽转身。这一转变不仅彰显了企业在逆境中的生存智慧&#xff0c;也为全球半导…

OSPF 动态路由协议(思科、华为)

#交换设备 OSPF 动态路由协议 一、基本概念 1.中文翻译&#xff1a;开放式最短路径优先路由协议&#xff08;open shortest path first&#xff09;&#xff0c;是一个内部网关路由协议&#xff08;一个自治系统内&#xff09;2.也称为&#xff1a;链路状态路由协议&#xf…

醉美酒话:承载着深厚文化底蕴的敬酒词

这些敬酒词凝聚了中华酒文化的精髓&#xff0c;每一句都体现了对美好愿景的深深祝愿&#xff0c;同时也展示了中文语言的丰富与魅力。 一、“步步高升”酒&#xff1a; 第一杯&#xff0c;酒至三分&#xff0c;象征着龙洒点滴、财运将至。我衷心祝愿您财富如江水般滚滚而来&a…

VirtualBox 安装UOS统信服务器操作系统

1、准备 1.1安装VirtualBox 由于过程简单&#xff0c;不做赘述&#xff01; 1.2下载UOS服务器版本 下载免费版本即可 服务器与云计算操作系统-统信软件 (uniontech.com)https://uniontech.com/os-serverCloud.html 2、安装 2.1新建虚拟机 2.2选择虚拟机模式&#xff0c;这…

船舶行业信息安全解决方案介绍

船舶行业信息安全背景&#xff1a; 近年来随着经济复苏、疫情与国际形势影响国内外船舶海运业务蓬勃发展&#xff0c;在业务量激增的背景下出现多类信息安全事件。其中2017年&#xff0c;马士基集团遭到勒索软件攻击&#xff0c;内部业务系统和码头操作系统均受到严重影响&…

spring注解驱动系列-- spring容器创建原理

从源码开始探究spring容器的创建原理&#xff0c;下面是源码总步骤 Override public void refresh() throws BeansException, IllegalStateException {synchronized (this.startupShutdownMonitor) {// Prepare this context for refreshing.prepareRefresh();// Tell the subc…

利用反向代理编写HTTP抓包工具——可视化界面

手写HTTP抓包工具——可视化界面 项目描述语言golang可视化fynev2功能代理抓包、重发、记录 目录 1. 示例1.1 主界面1.2 开启反向代理1.3 抓包1.4 历史记录1.5 重发 2. 核心代码2.1 GUI2.1 抓包 3. 结语3.1 传送门 1. 示例 1.1 主界面 1.2 开启反向代理 1.3 抓包 1.4 历史记录…

刷题——链表中倒数最后k个结点

描述 输入一个长度为 n 的链表&#xff0c;设链表中的元素的值为 ai &#xff0c;返回该链表中倒数第k个节点。 如果该链表长度小于k&#xff0c;请返回一个长度为 0 的链表。 数据范围&#xff1a;0≤&#x1d45b;≤1050≤n≤105&#xff0c;0≤&#x1d44e;&#x1d456…

两行css 实现瀑布流

html <ul ><li><a href"" ><img src"05094532gc6w.jpg" alt"111" /><p>传奇</p></a></li><li><a href"" ><img src"05094532gc6w.jpg" alt"111"…

在mysql中GROUP_CONCAT字段的作用

在 MySQL 中&#xff0c;GROUP_CONCAT 函数用于将分组中的多个值连接成一个字符串。这对于将同一组内的多个行的值合并成单个结果特别有用。以下是详细的说明和使用示例&#xff1a; 1. 基本用法 GROUP_CONCAT 的基本语法如下&#xff1a; GROUP_CONCAT([DISTINCT] column_n…

汽车EDI:波森Boysen EDI项目案例

企业A作为Boysen 的供应商&#xff0c;为了响应Boysen的号召&#xff0c;需要与其实现EDI对接。由于企业A此前并没有EDI项目的实施经验&#xff0c;对EDI项目的实施流程、技术要求等内容不知道应该从何下手。 为了实现EDI对接意味着企业A需要具备自己的EDI系统&#xff0c;从而…

佑友FHQ backup 后台任意文件读取漏洞复现

0x01 产品简介 佑友FHQ是一款专业的网络安全设备,用于保护企业网络免受各种网络威胁和攻击。其功能包括流量过滤、入侵检测与阻断、应用程序控制、虚拟专用网络(VPN)支持等。通过深度包检测和实时流量分析,佑友防火墙能够及时识别和阻止潜在的威胁,提供全面的安全保护。同…

vue中axios从content-disposition响应头获取中文名

在Vue中使用axios请求文件时&#xff0c;服务器可能会返回带有Content-Disposition响应头的文件&#xff0c;其中可能包含文件名的编码信息。如果你需要解码这个文件名&#xff0c;可以使用JavaScript的内置URL API来处理。 Java中用于设置HTTP响应头的&#xff0c;通常在Web开…

浏览器开发公司Brave 将自己的搜索结果与其 Leo AI 助手集成

Brave Software是一家开发浏览器的公司&#xff0c;其主要产品是Brave浏览器。Brave浏览器基于Chromium项目开发&#xff0c;具有高性能和隐私保护的特点。此外&#xff0c;Brave浏览器还提供了“off record”模式&#xff0c;允许用户在不记录浏览历史的情况下使用浏览器。关于…

C# Secs源码 HsmsSecs测试

包含客户端和服务端 启动客户端和服务端即可互相模拟sece 通讯 也可使用secs仿真器进行测试 开启后进行相关操作&#xff0c;创建客户端连接仿真器进行操作 仿真器显示日志 相关文件&#xff0c;源码 4.9 私信即可或者看我博客描述那个地址 我是狗子&#xff0c;希望你幸…

学习java第一百天

请解释Spring中的事务管理&#xff1f; 事务管理是确保数据完整性和一致性的重要机制。在Spring框架中&#xff0c;事务管理可以通过声明式事务管理或编程式事务管理来实现。声明式事务管理允许我们将事务管理逻辑与业务逻辑分离&#xff0c;让Spring容器自动处理事务的开启、提…

在ubuntu中创建容器并挂载windows共享的文件

Ubuntu关闭防火墙的方法如下&#xff1a; 打开终端&#xff0c;输入 sudo ufw status 回车&#xff0c;查看防火墙状态&#xff0c;inactive是关闭&#xff0c;active是开启。使用 sudo ufw enable 开启防火墙。使用 sudo ufw disable 关闭防火墙。打开“系统设置”&#xff…

广东工业大学领导一行莅临泰迪智能科技参观交流

6月13日&#xff0c;广东工业大学经济学院党委书记林伟英、经济学院党委副书记陈朝阳、党政办主任徐嘉靖、数学与统计学院徐圣兵莅临泰迪智能科技产教融合实训中心参观交流。泰迪智能科技董事长张良均、运营中心总监翁梦婷、校企合作经理吴桂锋进行了热情接待。 会上&#xff0…

JAVA小知识22:迭代器iterator与列表迭代器ListIterator

一、迭代器 在 Java 中&#xff0c;迭代器是一个设计模式&#xff0c;用于遍历集合中的元素。Java 提供了 Iterator 接口来实现这一功能。迭代器的主要作用是提供一种通用的遍历集合的方法&#xff0c;而不需要了解集合的具体实现细节。 1.1、迭代器的特点 统一接口&#xf…