SSM框架中,在实体类上添加了@DateTimeFormat和@JsonFormat以后,easyui中还是显示时间为1525504480000,想把时间转化成yyyy-MM-dd这种格式
{
field:
'createDate', title:
'消费时间', width:
1, align:
'center',formatter:
function(value
,row
,index){
var unixTimestamp =
new Date(value)
;
var s = unixTimestamp.
toLocaleString().
replace(
/\//g, "-")
;
return s.
substring(
0,9)
;
} }
,