时间格式的处理,前端的时间显示2020-07-13T16:02:00.000+0000

在后端添加@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';

你可能感兴趣的:(error,and,debug,java)