官方文档比较少请教sf里面的大神!
官方的辅助函数 list_categories 根本不够用,只好自己用 categories 这个变量了。
由于没学过 node.js 所以只有瞎折腾一通。
我先用 console.log() 看了看 site.categories.data,它的内容是如下。
折腾一番,这个 object 是用 map() 来调用的。
<% site.categories.map(function(category){ %> <h1><%= category.name %></h1> <% }) %>
<% site.categories.map(function(category){ %> <h1><%= category.name %></h1> <% category.posts.map(function(post){ %> <h2><%= post.name %></h2> <% }) %> <% }) %>
post.title
string
post.date
post.updated
post.comments
boolean
post.layout
post.content
post.excerpt
post.more
post.source
post.full_source
post.path
url_for(post.path)
post.permalink
post.prev
null
post.next
post.raw
post.photos
array
post.link
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
前言
官方的辅助函数 list_categories 根本不够用,只好自己用 categories 这个变量了。
由于没学过 node.js 所以只有瞎折腾一通。
我先用 console.log() 看了看 site.categories.data,它的内容是如下。
折腾一番,这个 object 是用 map() 来调用的。
输出目录标题
输出文章标题
post.title
string
post.date
post.updated
post.comments
boolean
post.layout
string
post.content
string
post.excerpt
string
post.more
string
post.source
string
post.full_source
string
post.path
url_for(post.path)
。string
post.permalink
string
post.prev
null
。string
ornull
post.next
null
。string
ornull
post.raw
post.photos
array
post.link
string