AngularJS日期格式无法正确显示

时间:2015-07-13 04:44:52

标签: angularjs date filter angularjs-scope angularjs-filter

我有以下代码:

<td class = "detail_labels"> Date Added: </td>
<td>{{post.issueDate | date: M/d/yyyy}}</td>

但它没有出现在2015年7月12日,它显示为:2015年7月12日

请帮助修复此错误!

1 个答案:

答案 0 :(得分:4)

您应该将'添加到您的过滤器中:

<td>{{post.issueDate | date: 'M/d/yyyy'}}</td>

有关更多信息,请参阅Angular文档的documentation for date filter