antd 获取当前时间
时间: 2023-07-17 09:55:58 浏览: 194
获取当前时间
5星 · 资源好评率100%
在 Ant Design 中,您可以使用 Moment.js 库来获取当前时间。以下是一个示例:
首先,确保您已经安装了 Moment.js:
```bash
npm install moment
```
然后,在您的代码中导入 Moment.js 和 Ant Design 组件:
```javascript
import React from 'react';
import { Button } from 'antd';
import moment from 'moment';
function App() {
const currentTime = moment().format('HH:mm:ss');
return (
<div>
<Button>{currentTime}</Button>
</div>
);
}
export default App;
```
在上面的示例中,我们使用 `moment()` 函数来获取当前时间,并使用 `format` 方法将其格式化为 `'HH:mm:ss'` 格式。然后,我们可以在 Ant Design 的 Button 组件中显示当前时间。
这样,您就可以在 Ant Design 中获取和显示当前时间了。
阅读全文