2
pugテンプレート内の要素を動的に作成しようとしています。 pug(jade)内の要素を動的に作成
が、私は基本的なコマンドを使用してデータベースから情報を取得db.component.findAll().then(function(component){
res.render('stock' ,{ table:component})
})
、コンテンツが作成されることになっているテンプレートは、私は、構文をチェックして
.tbl-content
table(cellpadding='0', cellspacing='0', border='0')
tbody
- row in table
tr
td= "#{row.name}"
td= "#{row.storage}"
であり、それが正しいはずですが、結果は完全に間違っています。文字列としてコンテンツとしてrow in table
が表示され、ページ上に表示されます。"#{row.name}"
および"#{row.storage}"
古い構文を使用していますか、私のアプローチは完全に間違っていますか?
ありがとうございます!
文書でより詳細にExplaned.tbl-content
table(cellpadding='0', cellspacing='0', border='0')
tbody
each row in table
tr
td= row.name
td= row.storage
: