我正在构建这个从数据库获取文章的应用程序,其中 1 个字段是现在格式为“2019-06-13T18:03:58.000Z”的日期,基本上我需要做的是检查这是否是今天的日期只返回小时和上午/下午所以对于这个例子是今天所以返回下午 18:03,如果日期与昨天相同,则返回“昨天”,如果日期不是这些,则返回“月,日”
我试过创建 Date 对象然后比较,但没有用
我有这个 html 代码:
<div class='date-container'>
{{renderDate(data.created_at)}}
</div>
并在 component.ts 文件中:
public renderDate(date) {
const fecha = new Date(date);
const today = new Date();
const yesterday = today.getDate()-1;
let fecha_r = '';
if(fecha.getTime() == today.getTime()){
fecha_r = 'today';
}
return fecha_r;
}
我需要在该函数中返回转换后的日期,以便我的 html 代码打印正确格式的日期,我该怎么做?
catspeake
相关分类