moment转年月日
时间: 2024-01-21 18:02:53 浏览: 71
时间戳转年月日时分秒
要将一个 Moment 对象转换为年月日的字符串,你可以使用 Moment.js 库的 `format()` 方法。以下是一个示例代码:
```javascript
const moment = require('moment');
const date = moment(); // 创建一个 Moment 对象,表示当前时间
const formattedDate = date.format('YYYY-MM-DD'); // 将 Moment 对象转换为年月日字符串
console.log(formattedDate); // 输出格式化后的日期字符串
```
在上面的示例中,我们使用 `moment()` 方法创建了一个代表当前时间的 Moment 对象。然后,我们使用 `format()` 方法将 Moment 对象转换为指定格式的字符串。在这里,我们使用了 `'YYYY-MM-DD'` 格式来表示年月日。你可以根据需要选择不同的格式。
运行以上代码将输出类似于 `2022-01-01` 的年月日字符串。
阅读全文