mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
775d1800bb
* chore(deps-dev): bump eslint-config-prettier from 6.15.0 to 7.0.0 Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 6.15.0 to 7.0.0. - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v6.15.0...v7.0.0) Signed-off-by: dependabot[bot] <support@github.com> * chore: fix eslint style * chore: prettier code style Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
43 lines
1.1 KiB
Markdown
43 lines
1.1 KiB
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 日期格式
|
|
en-US: Date Format
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
使用 `format` 属性,可以自定义日期显示格式。
|
|
|
|
## en-US
|
|
|
|
We can set the date format by `format`.
|
|
|
|
```jsx
|
|
import { DatePicker, Space } from 'antd';
|
|
import moment from 'moment';
|
|
|
|
const { RangePicker } = DatePicker;
|
|
|
|
const dateFormat = 'YYYY/MM/DD';
|
|
const monthFormat = 'YYYY/MM';
|
|
|
|
const dateFormatList = ['DD/MM/YYYY', 'DD/MM/YY'];
|
|
|
|
const customFormat = value => `custom format: ${value.format(dateFormat)}`;
|
|
|
|
ReactDOM.render(
|
|
<Space direction="vertical" size={12}>
|
|
<DatePicker defaultValue={moment('2015/01/01', dateFormat)} format={dateFormat} />
|
|
<DatePicker defaultValue={moment('01/01/2015', dateFormatList[0])} format={dateFormatList} />
|
|
<DatePicker defaultValue={moment('2015/01', monthFormat)} format={monthFormat} picker="month" />
|
|
<RangePicker
|
|
defaultValue={[moment('2015/01/01', dateFormat), moment('2015/01/01', dateFormat)]}
|
|
format={dateFormat}
|
|
/>
|
|
<DatePicker defaultValue={moment('2015/01/01', dateFormat)} format={customFormat} />
|
|
</Space>,
|
|
mountNode,
|
|
);
|
|
```
|