所需的返回值应该是格式为 的字符串dd-mm-yyyy
。
我试图给 ISOString 一个格式日期 dd-mm-yyyy 并添加 GMT 但代码给了我这种格式。我能怎么做?
new Date().toISOString()
.replace(/T/, ' '). // replace T with a space
.replace(/\..+/, ''); // delete the dot and everything after
'2012-11-04 14:55:45'