我从数据库获取动态内容,我想查看索引值,如.. 1,2,3,4,5,6,7
等。
我正在使用{{ @index }}
和{{ index }}
,但它不适用于我。
<template name="getDynamic">
<table class="table table-bordered table-striped">
<thead>
<tr>
<td>First Name</td>
<td>last Name</td>
<td>Email</td>
<td>password</td>
<td>Gender</td>
<td>Trems</td>
<td>Actions</td>
</tr>
</thead>
<tbody>
{{#each listalltests}} {{> list }} {{/each}}
</tbody>
</table>
</template>
<template name="list">
<tr>
<td> {{@index}} </td> // not working
<td> {{ username }} </td>
<td> {{ lastname }} </td>
<td> {{ email }} </td>
<td> {{ password }} </td>
<td> {{ gender }} </td>
<td> {{ terms }} </td>
<td>[<a href="#" class="delete-todo">Delete</a>] </td>
<!-- <td>[<a href="#" class="update-todo">Update</a>] </td> -->
</tr>
</template>
有没有办法在空间栏中访问数组索引?在meteor中?
答案 0 :(得分:1)
您的list
模板不了解@index
,因此您需要将其传递给模板。
因此你需要这样称呼它
{{ > list index=@index }}
当然,您需要更改列表模板中的代码才能访问项目数据:
<td>{{index}}</td>