我在尝试使用created
模板中命名的集合字段时遇到问题。这是保留字还是什么?
正在挣扎的模板部分如下所示:
{{#each threads}}
<tr>
<td><a href="forumShowThread?id={{_id}}">{{topic}}</a></td>
<td>{{creator.username}}</td>
<!-- The line below is the evil one. -->
<td>{{created}}</td>
<td>{{lastPost.poster.username}} {{datetime lastPost.posted}}</td>
</tr>
{{/each}}
我在浏览器的控制台中找到的线程如下:
[
Object
_id: "ngEtonq8XM36KtG3S"
created: 1375881336372
creator: function (){
creatorId: "ZmKpMdhP4GtzQo98e"
lastPost: function (){
posts: function (){
subCategory: function (){
subCategoryId: "axgd2xzctkfmphmwM"
topic: "Testing"
__proto__: Object
,
Object
_id: "XafEMvAvcRzpBKxG3"
created: 1375882602652
creator: function (){
creatorId: "ZmKpMdhP4GtzQo98e"
lastPost: function (){
posts: function (){
subCategory: function (){
subCategoryId: "axgd2xzctkfmphmwM"
topic: "Testnign again"
__proto__: Object
,
Object
_id: "CZmf5MfqZrB28SLPB"
created: 1375883440242
creator: function (){
creatorId: "ZmKpMdhP4GtzQo98e"
lastPost: function (){
posts: function (){
subCategory: function (){
subCategoryId: "axgd2xzctkfmphmwM"
topic: "And another shoot"
__proto__: Object
]
显然三个线程,它们都有一个创建的字段。但是浏览器显示如下:
<tr>
<td><a href="forumShowThread?id=CZmf5MfqZrB28SLPB">And another shoot</a></td>
<td>Peppe L-G</td>
<td></td>
<td>Peppe L-G 7 August 2013 15:50</td>
</tr>
<tr>
<td><a href="forumShowThread?id=XafEMvAvcRzpBKxG3">Testnign again</a></td>
<td>Peppe L-G</td>
<td></td>
<td>Peppe L-G 7 August 2013 15:36</td>
</tr>
<tr>
<td><a href="forumShowThread?id=ngEtonq8XM36KtG3S">Testing</a></td>
<td>Peppe L-G</td>
<td></td>
<td>Peppe L-G 7 August 2013 15:35</td>
</tr>
为什么没有显示created
字段?
我尝试使用<td>{{this.created}}</td>
而不是<td>{{created}}</td>
,然后浏览器显示以下内容:
<tr>
<td><a href="forumShowThread?id=CZmf5MfqZrB28SLPB">And another shoot</a></td>
<td>Peppe L-G</td>
<td>1375883440242</td>
<td>Peppe L-G 7 August 2013 15:50</td>
</tr>
<tr>
<td><a href="forumShowThread?id=XafEMvAvcRzpBKxG3">Testnign again</a></td>
<td>Peppe L-G</td>
<td></td>
<td>Peppe L-G 7 August 2013 15:36</td>
</tr>
<tr>
<td><a href="forumShowThread?id=ngEtonq8XM36KtG3S">Testing</a></td>
<td>Peppe L-G</td>
<td></td>
<td>Peppe L-G 7 August 2013 15:35</td>
</tr>
该created
字段现在适用于第一个线程,但不适用于其余线程。这是怎么回事?!
如果它是相关的,这里是整个模板:
<template name="pageForumSubCategory">
<div class="layoutContentForumSubCategory">
{{#with subCategory}}
<h1>
<a href="forum">Forum</a>
→
{{name}}
{{#if currentUser}}
→
<a href="forumCreateNewThread?id={{_id}}">New thread</a>
{{/if}}
</h1>
{{#if threads.count}}
<table border="2">
<thead>
<tr>
<th>Topic</th>
<th>Creator</th>
<th>Created</th>
<th>Last post</th>
</tr>
</thead>
<tbody>
{{#each threads}}
<tr>
<td><a href="forumShowThread?id={{_id}}">{{topic}}</a></td>
<td>{{creator.username}}</td>
<!-- The line below is the eveil one. -->
<td>{{this.created}}</td>
<td>{{lastPost.poster.username}} {{datetime lastPost.posted}}</td>
</tr>
{{/each}}
</tbody>
</table>
{{else}}
<p>Well, it's more or less empty here (so far).</p>
{{/if}}
{{else}}
<h1>
<a href="forum">Forum</a>
→
???
</h1>
<p>Hmm... There is no subforum with the given id. Strange, but there's nothing I can do about it. Sorry.</p>
{{/with}}
</div>
</template>