pug
Iteration mit Mops
Suche…
Einführung
Wie man ein einfaches JSON-Objekt durchläuft und viel Eingabe spart
Bemerkungen
Sie müssen Node.js und Pug installiert haben
Jede Wiederholung
Erstellen Sie eine app.js mit einem einfachen Datenspeicher :
app.get("/bookstore", function (req, res, next) {
// Your route data
var bookStore = [
{
title: "Templating with Pug",
author: "Winston Smith",
pages: 143,
year: 2017
},
{
title: "Node.js will help",
author: "Guy Fake",
pages: 879,
year: 2015
}
];
res.render("index", {
bookStore: bookStore
});
});
Durchlaufen Sie den Datenspeicher mithilfe einer index.pug Datei und einer index.pug Schleife:
each book in bookStore
ul
li= book.title
li= book.author
li= book.pages
li= book.year
Ergebnis wird sein:
<ul>
<li>Templating with Pug</li>
<li>Winston Smith</li>
<li>143</li>
<li>2017</li>
</ul>
<ul>
<li>Node.js will help</li>
<li>Guy Fake</li>
<li>879</li>
<li>2015</li>
</ul>
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow