这是我想要实现的一些伪代码:
for year in post.date
h1 year
for month in post.date
h2 month
ul
li post entry
那是伪代码。但是我没有足够的经验来实现这一目标。发生这种情况的文件是:https://github.com/Greduan/eduantech.docpad/blob/master/src/documents/posts.html.eco
它将采用eco语言。我也在使用Moment.js,以备不时之需。
即使您没有提供确切的代码,我们也非常感谢您的一般指示。 :)
修改 我想要达到的目标类似于:http://swannodette.github.io/archive.html
编辑2: 以下是我提出的一些代码:
for post in @getCollection('posts').toJSON()
for year in post.date
h1 @moment(post.date).format('YYYY')
for month in post.date
h2 @moment(post.date).format('MMMM')
ul ->
li ->
@postDatetime(post.date, 'll') + ' » '
a href:'post.url', post.title
现在它只输出任何东西。所以我想我的一些变量名称错了,我想我做了。我感谢任何帮助。 :)
BTW不担心@postDatetime
功能。那在其他地方没有问题。 :)
答案 0 :(得分:2)
如果您的帖子已按日期排序,则您的收藏已按年,月分组。您需要做的就是遍历整个集合,并在年/月值更改时插入年份和月份标题。像这样:
yr = -1 //temporary vars for storing current year value in loop
mnth = -1 //same for month value
monthNames = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ]
div style:'text-align:left;font-size:20px;width:500px;margin-right:auto;margin-left:auto', ->
for post in @getCollection('posts').toJSON()
if post.date.getFullYear() isnt yr
yr = post.date.getFullYear()
mnth = -1
h1 yr.toString()
if post.date.getMonth() isnt mnth
mnth = post.date.getMonth()
h2 style:'padding-left:10px;', monthNames[mnth]
ul style:'padding-left:50px;', ->
li ->
post.date.toDateString()
这听起来像你追求的那样吗?