欢迎您 本站地址:  

React 教程

React 是一个用于构建用户界面的 JAVASCRIPT 库。

React 主要用于构建 UI,很多人认为 React 是 MVC 中的 V(视图)。

React 起源于 Facebook 的内部项目,用来架设 Instagram 的网站,并于 2013 年 5 月开源。

React 拥有较高的性能,代码逻辑非常简单,越来越多的人已开始关注和使用它。


React 特点


阅读本教程前,您需要了解的知识:

在开始学习 React 之前,您需要具备以下基础知识:


React 第一个实例

在每个章节中,您可以在线编辑实例,然后点击按钮查看结果。

本教程使用了 React 的版本为 18.2.0,你可以在官网 https://www.fxku.cn/a/9/.php 下载最新版。

React 实例

<div id="example"></div> <script type="text/babel"> // 简单的 React 组件 function App() { return <h1>Hello, React!</h1>; } const root = ReactDOM.createRoot(document.getElementById("example")); // 渲染 React 组件到 DOM root.render(<App />); </script>

尝试一下 >

引入外部脚本:

<script src="http://shuju.fxku.cn/tu/10/react.production.min.js" ></script>
<script src="http://shuju.fxku.cn/tu/10/react-dom.production.min.js"></script>
<script src="http://shuju.fxku.cn/tu/10/babel.min.js" ></script>

这三行代码分别引入了 React、ReactDOM 和 Babel Standalone 库。

或者使用 create-react-app 工具(下一章节会介绍)创建的 react 开发环境:

实例

import React from "react";
import ReactDOM from "react-dom";

function Hello(props) {
  return <h1>Hello World!</h1>;
}

ReactDOM.render(<Hello />, document.getElementById("root"));

这时候浏览器打开 http://localhost:3000/ 就会输出:

Hello World!
小库提示

扫描下方二维码,访问手机版。