【发布时间】:2014-06-04 22:21:57
【问题描述】:
我有一个正常工作的 ng-repeat,我想按日期降序排序(最新项目优先)。
但是,我似乎无法让它工作。我已经仔细检查了引用等。我尝试过 orderBy:'createdate':reverse、orderBy:'article.createdate':reverse 和 orderBy:'data.blog.article.createdate':reverse 似乎都不起作用。
这是我的看法:
<article data-ng-if="article.id == post || post===NULL" data-ng-repeat="article in data.blog.article | orderBy:'createdate':reverse | slice:currentPage*pageSize:currentPage+1*pageSize">
<h2 class="blog-post-title">
<a href="#!/blog/{{article.id}}" title="Permalink to {{article.title.__cdata}}">{{article.title.__cdata}}</a>
</h2>
<span class="blog-post-meta">Posted on {{article.createdate | date:'MMMM dd, yyyy h:mma'}} by {{article.author}}</span>
<div class="blog-post-content" ng-bind-html="article.content.__cdata">{{article.content.__cdata}}</div>
</article>
这是一个数据示例(使用 X2JS 从 XML 转换为 JSON):
{
"blog": {
"article": [
{
"id": "1",
"author": "eat-sleep-code",
"title": {
"__cdata": "The first article."
},
"content": {
"__cdata": "\n This is my first article in my test site.\n "
},
"createdate": "2014-05-09"
},
{
"id": "2",
"author": "eat-sleep-code",
"title": {
"__cdata": "The second article."
},
"content": {
"__cdata": "\n This is my second article in my test site. This article's create date is actually earlier.\n "
},
"createdate": "2014-05-08"
}
]
}
}
【问题讨论】:
-
当你说不工作时,发生了什么?是否有任何控制台错误?它们的顺序不正确吗?
-
完全没有控制台错误。只是顺序不对。哦,还尝试从 orderBy 中删除 :reversed 以确保这不是问题。没有变化。