egg-egg-momentjs
为egg.js
适配的moment.js
插件。
依赖说明
依赖的 egg 版本
egg-egg-momentjs 版本 | egg 1.x |
---|---|
1.x | |
0.x |
开启插件
// config/plugin.js
exports.moment = {
enable: true,
package: 'egg-moment',
};
详细配置
请到 config/config.default.js 查看详细配置项说明。
使用方法
插件自动挂载到app
上,可以在service
、controller
等场景使用
// 基础使用,更多用法请参考moment.js官方文档
// controller/home.js
home() {
const { app } = this
// 获取当前毫秒时间戳
const timestamp = app.moment().valueof()
console.log(`时间戳为:${timestamp}`)
}
单元测试
提问交流
请到 egg issues 异步交流。