//Usamos el idioma español
moment.locale('es');
let now= moment();
//formato por defecto
console.log(now)
//formato predefinido, hay más opciones (ver enlace anterior)
console.log(now.format('LL'));
//formato pedido por el OP (los meses en español empiezan por minúscula)
console.log(now.format('DD-MMM-YYYY'));
使用
toLocaleDateString
withes
as local 和replace
with 正则表达式进行微调,因为只toLocaleDateString
使用结果将是14 feb. 2017
例子:
我为喜欢使用moment.js库的用户添加了这个答案,在处理日期时非常受欢迎。
输出格式的细节可以看这里
来自这里的信息: