cron表达式用js转化成正常时间格式
时间: 2023-07-20 22:25:15 浏览: 181
Cron表达式Html源码
可以使用第三方库 `cronstrue` 来将 `cron` 表达式转换成正常时间格式。以下是使用示例:
首先,通过 npm 安装 `cronstrue`:
```
npm install cronstrue
```
然后,在你的 JavaScript 代码中引入 `cronstrue`:
```javascript
const cronstrue = require('cronstrue');
```
最后,使用 `cronstrue.toString()` 方法将 `cron` 表达式转换成正常时间格式。示例代码如下:
```javascript
const expression = '0 0 1 * *'; // 每个月的第一天
const description = cronstrue.toString(expression);
console.log(description); // 输出:'At 00:00 on day 1 of the month'
```
阅读全文