为了账号安全,请及时绑定邮箱和手机立即绑定

如何转换 Java Instant 以在 Angular 客户端显示日期?

如何转换 Java Instant 以在 Angular 客户端显示日期?

慕丝7291255 2021-09-12 20:37:05
我在服务器中使用 java spring-boot 并Instant.now()用于填充Instant日期变量。在我的客户中,我想显示日期,但其格式UTC如下所示:"date": "2018-09-11T11:16:27.708783700Z"我在我的客户端上使用NativeScript和Angular我应该如何在我的客户端上格式化这个日期?
查看完整描述

2 回答

?
湖上湖

TA贡献2003条经验 获得超2个赞

对于客户端,您可以使用 angular datepipe API 使其可读日期。否则你也可以使用moment。下面是示例


@Component({

 selector: 'date-pipe',

 template: `<div>

   <p>Today is {{today | date}}</p>

   <p>Or if you prefer, {{today | date:'fullDate'}}</p>

   <p>The time is {{today | date:'h:mm a z'}}</p>

 </div>`

})

// Get the current date and time as a date-time value.

export class DatePipeComponent {

  today: number = Date.now();

}

你可以在这里查看他们的文档


查看完整回答
反对 回复 2021-09-12
  • 2 回答
  • 0 关注
  • 148 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信