时间格式的处理,前端的时间显示2020-07-13T16:02:00.000+0000
程序员文章站
2022-03-11 16:07:55
在后端添加@JsonFormat@JsonFormat(shape=JsonFormat.Shape.STRING,pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")在这里插public class CdEqInfoVO { /** * 设备id */ private Long mpntId; /** * 设备名称 */ private String mpntName; /**...
在后端添加@JsonFormat
@JsonFormat(shape=JsonFormat.Shape.STRING,pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
在这里插public class CdEqInfoVO {
/**
* 设备id
*/
private Long mpntId;
/**
* 设备名称
*/
private String mpntName;
/**
* 时间:更改格式
*/
@JsonFormat(shape=JsonFormat.Shape.STRING,pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
private Date photovolaticTime;入代码片
或
前端js 更改前端样式:
注:使用classname一定要加下标
document.getElementsByClassName("contiainer_table_none")[0].style.display='none';
document.getElementById("historyZhInfo").style.display='block';
本文地址:https://blog.csdn.net/qq_42184068/article/details/107312554
上一篇: 海外试玩推广渠道汇总
下一篇: python 的链式调用