mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-26 18:08:34 +08:00
123 lines
3.0 KiB
Markdown
123 lines
3.0 KiB
Markdown
# 快速上手
|
||
|
||
- category: 1
|
||
- order: 1
|
||
|
||
---
|
||
|
||
Ant Design React 致力于提供给程序员愉悦的开发体验。
|
||
|
||
实际项目开发中,你会需要 CommonJS 、JSX 构建、打包部署等一系列工程化的需求。
|
||
我们提供了一套 `npm` + `webpack` 的开发工具链来辅助开发,下面我们用一个简单的实例来说明。
|
||
|
||
### 1. 安装命令行工具
|
||
|
||
```bash
|
||
$ npm install antd-bin@0.6.x -g
|
||
```
|
||
|
||
[更多使用说明](https://github.com/ant-design/antd-bin#使用说明)。
|
||
|
||
### 2. 创建一个项目
|
||
|
||
使用命令行进行初始化。
|
||
|
||
```bash
|
||
$ mkdir antd-demo && cd antd-demo
|
||
$ antd init
|
||
$ npm install
|
||
```
|
||
|
||
若下面例子发生报错,尝试用 `npm install antd@beta --save` 安装 `0.10.x` 或更高版本。
|
||
|
||
### 3. 使用组件
|
||
|
||
编辑 `src/component/App.jsx`,用 React 的方式直接使用 Ant Design React 的组件。
|
||
|
||
```jsx
|
||
import React from 'react';
|
||
import { Datepicker, message } from 'antd';
|
||
|
||
const App = React.createClass({
|
||
getInitialState() {
|
||
return {
|
||
date: ''
|
||
};
|
||
},
|
||
handleChange(value) {
|
||
message.info('您选择的日期是: ' + value.toString());
|
||
this.setState({
|
||
date: value
|
||
});
|
||
},
|
||
render() {
|
||
return <div style={{width: 400, margin: '100px auto'}}>
|
||
<Datepicker onSelect={this.handleChange} />
|
||
<div style={{marginTop: 20}}>当前日期:{this.state.date.toString()}</div>
|
||
</div>;
|
||
}
|
||
});
|
||
|
||
export default App;
|
||
```
|
||
|
||
你可以在 [这里](/components/button) 选用更多组件。
|
||
|
||
### 4. 开发调试
|
||
|
||
一键启动调试,访问 http://127.0.0.1:8000 查看效果。
|
||
|
||
```bash
|
||
$ npm run dev
|
||
```
|
||
|
||
### 5. 构建和部署
|
||
|
||
```bash
|
||
$ npm run build
|
||
```
|
||
|
||
入口文件会构建到 `dist` 目录中,你可以自由部署到不同环境中进行引用。
|
||
|
||
> 上述例子用于帮助你理解 Ant Design React 的使用流程,并非真实的开发过程,你可以根据自己的项目开发流程进行接入。
|
||
|
||
## 兼容性
|
||
|
||
Ant Design React 支持所有的现代浏览器和 IE8+。
|
||
|
||
对于 IE8,需要提供 [es5-shim](http://facebook.github.io/react/docs/working-with-the-browser.html#browser-support-and-polyfills) 等 Polyfills 的支持。
|
||
|
||
```html
|
||
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<!-- 引入样式 -->
|
||
<link rel="stylesheet" href="/index.css">
|
||
<!-- Polyfills -->
|
||
<script src="https://as.alipayobjects.com/component/??console-polyfill/0.2.2/index.js,es5-shim/4.1.14/es5-shim.js,es5-shim/4.1.14/es5-sham.js,html5shiv/3.7.2/html5shiv.js"></script>
|
||
</head>
|
||
<body>
|
||
</body>
|
||
<!-- 引入公用文件 -->
|
||
<script src="/common.js"></script>
|
||
<!-- 引入入口文件 -->
|
||
<script src="/index.js"></script>
|
||
</html>
|
||
```
|
||
|
||
<div class="code-line-highlight"></div>
|
||
|
||
<style>
|
||
.code-line-highlight {
|
||
box-shadow: 0 -239px 0 rgba(255, 207, 0, 0.16);
|
||
height: 42px;
|
||
margin-bottom: -42px;
|
||
}
|
||
</style>
|
||
|
||
## 小甜点
|
||
|
||
- 你可以享用 `npm` 生态圈里的所有模块。
|
||
- 我们使用了 `babel`,试试用 [ES6](http://babeljs.io/blog/2015/06/07/react-on-es6-plus/) 的写法来提升编码的愉悦感。
|