W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
這篇文章教你如何創(chuàng)建你的博客貼子的一個列表,每一個條目包含標(biāo)題、鏈接以及貼子內(nèi)容。
給定一個這樣的目錄結(jié)構(gòu):
/public
/posts
_data.json
my-first-post.md
my-second-post.md
/index.jade <-- or index.ejs
添加一個這樣的 /public/posts/_data.json
:
{
"my-second-post": {
"title": "My second post"
},
"my-first-post": {
"title": "My first post"
}
}
你可以在 Jade 中這樣遍歷你的貼子:
for post, slug in public.posts._data
h2: a(href="/posts/#{ slug }")= post.title
!= partial("posts/" + slug)
或者在 EJS 中:
<% for(var slug in public.posts._data){ %>
<h2><a href="/posts/<%= slug %>"><%= public.posts._data[slug].title %></a></h2>
<%- partial("posts/" + slug) %>
<% }; %>
我們正在使用 for
迭代器來遍歷 /public/posts/_data.json
中的數(shù)據(jù)??梢酝ㄟ^ public.posts._data
獲取到貼子數(shù)據(jù)對象。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: