关于时间转换的问题?

场景: 如下图, 红框中的数据是后台传过来的时间, 因为是一串字符串, 在 ts 中我就没办法对这个时间做处理 (例如转成数字、获取年月日等)

image.png

对应的 ts 代码

un_queryAll() {
  this.iconService.queryAll().subscribe((res: { icons?: Icon[] }) => {
    this.dataSource.sort = this.sort;
    console.log(Date.now());
    if (res.icons) {
      this.dataSource.data = res.icons;
      console.log(res.icons[0].createTime)
    }
    console.log(res.icons)
  });
}

问题简述1: 我在model中定义的 createTimeupdateTime, 都是 number 类型, 并且我在接收 res 时候已经指定接收对象是一个 Icon 类型的数组了, 但为什么我最终 res.icons[0].createTime 结果是一串字符串?

export interface Icon {
    id: number;
    name: string;
    enabled: boolean;
    createBy: string;
    updateBy: string;
    createTime: number;
    updateTime: number;
}

后台的实体类中, 用的是 Timestamp 类来存储时间

@Column
@CreationTimestamp
private Timestamp createTime;

mysql 中, 该属性是 DATETIME 类型

`create_time` DATETIME(6) DEFAULT NULL

问题简述2: 如何实现当后台先将时间转成数字(时间戳)再传给前台, hibernate有没有什么注解可以支持这个功能的?

阅读 2.1k
1 个回答
  1. typescript 中的 interface 仅仅只是类型定义,跟 Java 中的 POJO 类是不一样的,因为 typescript 需要兼容 javascript 导致其反射能力非常薄弱,并不能自动将json中的 string 类型映射为 number 类型(当然可以使用第三方插件实现类似效果,比如class-transformer等)。虽然你的 createTime 定义为 number 类型,但是实际返回数据json中的 createTimestring 类型,最终的结果也只会是 string 类型。interface 的定义应该按照实际数据类型定义,否则只会欺骗编译器的静态检查。
  2. 如果后端使用的是 Jackson,那么可以使用 @JsonFormat 注解来快速格式化时间,示例如下:

    public class DemoObject {
    
     @JsonFormat(shape = JsonFormat.Shape.NUMBER)
     private Date date;
    
    }

    也可以使用Spring自带的 @DateTimeFormat 注解,示例如下:

    public class DemoObject {
    
     @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME)
     private Date date;
    
    }
推荐问题
logo
Microsoft
子站问答
访问
宣传栏