Spring Boot後端與Angular前端進行timestamp的交互

後端使用java.sql.Timestamp

後端vo字段類型使用前端

import java.sql.Timestamp;

Mapper能夠爲字段加上屬性jdbcType="TIMESTAMP" 也能夠不加java

<result property="startTime" column="start_time" jdbcType="TIMESTAMP"/>

Angular前端vo

不管後端使用什麼類型進行時間戳轉換,都須要前端將Date轉換成時間戳的形式(number)sql

java.sql.Timestamp
java.sql.Date
java.util.Date

前端字段後端

startTime: number;

vo賦值時使用app

this.testVo.startTime = Date.parse(new Date().toString())

從後端獲取數據後須要在前端進行轉換this

new Date(this.testVo.startTime)
我的博客 蝸牛
相關文章
相關標籤/搜索