ant-design/components/date-picker/demo/time.md

43 lines
912 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title:
2016-06-19 11:17:09 +08:00
zh-CN: 日期时间选择
en-US: Choose Time
2016-03-31 09:40:55 +08:00
---
2015-06-02 17:20:02 +08:00
2016-06-19 11:17:09 +08:00
## zh-CN
2016-04-15 23:54:47 +08:00
增加选择时间功能,当 `showTime` 为一个对象时,其属性会传递给内建的 `TimePicker`
2015-05-29 21:07:46 +08:00
2016-06-19 11:17:09 +08:00
## en-US
This property provide an additional time selection. When `showTime` is an Object, its properties will be passed on to built-in `TimePicker`.
2016-06-19 11:17:09 +08:00
2017-01-19 15:19:03 +08:00
````__react
import { DatePicker } from 'antd';
const { RangePicker } = DatePicker;
2015-05-29 21:07:46 +08:00
2016-10-21 15:18:13 +08:00
function onChange(value, dateString) {
2016-09-29 14:35:33 +08:00
console.log('Selected Time: ', value);
2016-10-21 15:18:13 +08:00
console.log('Formatted Selected Time: ', dateString);
}
ReactDOM.render(
<div>
<DatePicker
2016-11-14 19:13:37 +08:00
showTime
format="YYYY-MM-DD HH:mm:ss"
placeholder="Select Time"
onChange={onChange}
/>
<br />
<RangePicker
2016-11-14 19:13:37 +08:00
showTime
format="YYYY-MM-DD HH:mm:ss"
placeholder={['Start Time', 'End Time']}
onChange={onChange}
/>
2016-11-14 19:13:37 +08:00
</div>
, mountNode);
2015-05-29 21:07:46 +08:00
````