我正在研究如何在Express上构建会议Web应用程序。在演讲中,他使用swig,但我更喜欢使用jade而不是swig,因为我正试图使用它。
我正在尝试将swig代码转换为jade,我被困在这些代码中。
//In swig,
<div class="col-md-12 column list-group">{% for note in notes %}
<div class="list-group-item">
<div>Note from <em><strong>{{ note.memberName }}</strong></em> on: {{ note.createdOn.toDateString() }}
- for project: <strong>{{ note.project }}</strong>
</div>
<div><strong>Work yesterday:</strong> {{ note.workYesterday }}</div>
<div><strong>Work today:</strong> {{ note.workToday }}</div>
<div><strong>Impediment:</strong> {{ note.impediment }}</div>
</div> {% endfor %}
我猜{j}文件中的{% for note in notes %}
与for note in notes
类似。但是,我无法转换此类{{note.project}}
的其他部分,而其他代码则以{{ note.
开头。
任何人都可以帮忙吗? 提前谢谢!
答案 0 :(得分:0)
根据Jade reference你的foreach循环看起来像这样:each note in notes
。 note
的属性也应该可以note.project
访问。至少如果它们是Javascript对象。