React 入门教程 React 安装

2024-02-25 开发教程 React 入门教程 匿名 0

React 可以直接下载使用,下载包中也提供了很多学习的实例。

本教程使用了 React 的版本为 v17.0.2,你可以在官网 http://facebook.github.io/react/下载最新版。

你也可以直接使用 React CDN 库,地址如下:

<script src="https://unpkg.com/react@17/umd/react.production.min.js" rel="external nofollow"  rel="external nofollow" ></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js" rel="external nofollow" rel="external nofollow" ></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js" rel="external nofollow" rel="external nofollow" ></script>

使用实例

实例

以下实例展示了一个h1标题的输出

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>Hello React!</title>
    <script src="https://unpkg.com/react@17/umd/react.production.min.js" rel="external nofollow" rel="external nofollow" ></script>
    <script src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js" rel="external nofollow" rel="external nofollow" ></script>
    <script src="https://unpkg.com/babel-standalone@6/babel.min.js" rel="external nofollow" rel="external nofollow" ></script>
  </head>
  <body>
    <div id="example"></div>
    <script type="text/babel">
      ReactDOM.render(
        document.getElementById('example')
      );
    </script>
  </body>
</html>

实例解析:

实例中我们引入了三个库:​react.production.min.js​ 、​react-dom.production.min.js​ 和 ​babel.min.js​:

  • react.production.min.js - React 的核心库
  • react-dom.production.min.js - 提供与 DOM 相关的功能
  • babel.min.js - Babel 可以将 ES6 代码转为 ES5 代码,这样我们就能在目前不支持 ES6 的浏览器上执行 React 代码。
  • Babel 内嵌了对 JSX 的支持。
  • 通过将 Babel 和 babel-sublime 包(package)一同使用可以让源码的语法渲染上升到一个全新的水平

注意:在浏览器中使用Babel来编译JSX效率是非常低的,一般来说前端开发工作者在页面部署到网站前先使用babel进行编译。

ReactDOM.render(
<h1>学编程,就到W3Cschool</h1>,
document.getElementById('example')
);

以上代码将一个 h1 标题,插入 id="example" 节点中。

注意:

如果我们需要使用 JSX,则 <script> 标签的 type 属性需要设置为 text/babel。

通过 npm 使用 React

如果你的系统还不支持 Node.js 及 NPM 可以参考我们的 Node.js 教程。

我们建议在 React 中使用 CommonJS 模块系统,比如 browserify 或 webpack,本教程使用 webpack。

国内使用 npm 速度很慢,你可以使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:

$ npm install -g cnpm --registry=https://registry.npmmirror.com
$ npm config set registry https://registry.npmmirror.com

这样就可以使用 cnpm 命令来安装模块了:

$ cnpm install [name]

更多信息可以查阅:http://npm.taobao.org/