我尝试为我的项目SugarJS使用新模块。我可以打印日期,但是不能格式化它。这是我的代码
const Sugar = require('sugar')
let yesterday = Sugar.Date.create()
let yesterdayWithFormat = Sugar.Date.create().format("{dd}")
昨天的输出是
2019-10-14T06:52:28.466Z
,但是昨天的输出错误Sugar.Date.create(...).format is not a function
有人可以帮助我吗?
最佳答案
要使用format
函数,您需要调用Sugar.extend();
:
const Sugar = require('sugar')
Sugar.extend();
let yesterday = Sugar.Date.create()
let yesterdayWithFormat = Sugar.Date.create().format("{dd}")
console.log(yesterday)
console.log(yesterdayWithFormat)
关于javascript - 我无法从SugarJS格式化日期,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58371639/