如何将Thu May 03 2018 14:34:57 GMT-0700 (PDT)
转换为
ExtJs中的"03-MAY-2018"
格式。
我尝试使用Ext.Date,但是我没有定义,因为我使用的是没有Date prop的较旧的ExtJs版本。
答案 0 :(得分:1)
这不是ExtJS特有的,但您可以这样做:
let date = 'Thu May 03 2018 14:34:57 GMT-0700 (PDT)';
let dp = date.split(' ');
let newDate = dp[2] + '-' + dp[1].toUpperCase() + '-' + dp[3];
答案 1 :(得分:1)
var date = new Date();
date.toLocaleDateString("en-au", {year: "numeric", month: "short",day: "numeric"}).replace(/\s/g,'-')
我希望这就是你想要的。 请参阅:this link