2016-12-22 14:24:50 +08:00
|
|
|
---
|
2019-12-17 22:25:28 +08:00
|
|
|
order: 4
|
2016-12-22 14:24:50 +08:00
|
|
|
title: 在 create-react-app 中使用
|
|
|
|
---
|
|
|
|
|
2023-06-12 16:45:59 +08:00
|
|
|
[create-react-app](https://create-react-app.dev/) 是业界最优秀的 React 应用开发工具之一,本文会尝试使用 `create-react-app` 创建一个项目,并引入 antd。
|
2016-12-22 14:24:50 +08:00
|
|
|
|
|
|
|
## 安装和初始化
|
|
|
|
|
2023-06-12 16:45:59 +08:00
|
|
|
在开始之前,你可能需要安装 [yarn](https://github.com/yarnpkg/yarn/) 或者 [pnpm](https://pnpm.io/zh/)。
|
2019-12-06 12:25:27 +08:00
|
|
|
|
2023-06-12 16:45:59 +08:00
|
|
|
<InstallDependencies npm='$ npx create-react-app antd-demo' yarn='$ yarn create react-app antd-demo' pnpm='$ pnpm create react-app antd-demo'></InstallDependencies>
|
2016-12-22 14:24:50 +08:00
|
|
|
|
|
|
|
工具会自动初始化一个脚手架并安装 React 项目的各种必要依赖,如果在过程中出现网络问题,请尝试配置代理或使用其他 npm registry。
|
|
|
|
|
|
|
|
然后我们进入项目并启动。
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ cd antd-demo
|
2017-01-09 13:50:49 +08:00
|
|
|
$ yarn start
|
2016-12-22 14:24:50 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
此时浏览器会访问 http://localhost:3000/ ,看到 `Welcome to React` 的界面就算成功了。
|
|
|
|
|
|
|
|
## 引入 antd
|
|
|
|
|
|
|
|
这是 create-react-app 生成的默认目录结构。
|
|
|
|
|
|
|
|
```
|
|
|
|
├── README.md
|
|
|
|
├── package.json
|
|
|
|
├── public
|
|
|
|
│ ├── favicon.ico
|
|
|
|
│ └── index.html
|
|
|
|
├── src
|
|
|
|
│ ├── App.css
|
|
|
|
│ ├── App.js
|
|
|
|
│ ├── App.test.js
|
|
|
|
│ ├── index.css
|
|
|
|
│ ├── index.js
|
|
|
|
│ └── logo.svg
|
|
|
|
└── yarn.lock
|
|
|
|
```
|
|
|
|
|
2017-01-09 13:50:49 +08:00
|
|
|
现在从 yarn 或 npm 安装并引入 antd。
|
2016-12-22 14:24:50 +08:00
|
|
|
|
|
|
|
```bash
|
2017-05-28 17:03:34 +08:00
|
|
|
$ yarn add antd
|
2016-12-22 14:24:50 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
修改 `src/App.js`,引入 antd 的按钮组件。
|
|
|
|
|
|
|
|
```jsx
|
2020-05-15 17:18:55 +08:00
|
|
|
import { Button } from 'antd';
|
2023-06-12 16:45:59 +08:00
|
|
|
import React from 'react';
|
2016-12-22 14:24:50 +08:00
|
|
|
|
2019-12-15 22:25:56 +08:00
|
|
|
const App = () => (
|
|
|
|
<div className="App">
|
|
|
|
<Button type="primary">Button</Button>
|
|
|
|
</div>
|
|
|
|
);
|
2016-12-22 14:24:50 +08:00
|
|
|
|
|
|
|
export default App;
|
|
|
|
```
|
|
|
|
|
2020-05-15 17:18:55 +08:00
|
|
|
好了,现在你应该能看到页面上已经有了 antd 的蓝色按钮组件,接下来就可以继续选用其他组件开发应用了。其他开发流程你可以参考 create-react-app 的[官方文档](https://create-react-app.dev/docs/getting-started)。
|
2016-12-22 14:24:50 +08:00
|
|
|
|
2019-12-15 22:25:56 +08:00
|
|
|
我们现在已经把 antd 组件成功运行起来了,开始开发你的应用吧!
|