角度-今天的日期与API返回的日期之间的差异

时间:2018-11-09 14:23:09

标签: angular

我正在工作的网站页面从API中提取人们的评论。返回的JSON中的一项是创建评论的日期。 我想显示评论日期(已完成),但我也想包括创建评论的天数。我正在使用* ngFor遍历所有评论。

<div *ngFor="let review of reviews.data.beerReviews.items">
<div>{{review.createdAt | date}}</div>  //displays date of the review as expected
//here I want to display the number of days ago the review was made
</div>

我尝试为今天的日期创建一个属性:

today: number=Date.now();

然后我尝试让它进行数学运算:

{{today|date - review.createdAt|date}}

它当然不起作用,控制台中的错误:

Parser Error: Unexpected token '-' at column 12 in [{{today|date - review.createdAt|date}}]

我是这一切的新手,所以希望我已经很好地解释了,谢谢。

0 个答案:

没有答案