我是METEOR的初学者。我无法检索数据并将其显示到我的html页面。我有一个名为"登录"的集合。请尽量用简单的语言帮助我。以下是我的代码。
main.html中
<head>
<title>Time-Bank</title>
</head>
<body>
<div class="bg-color">
{{> header}}
{{> form}}
{{> todos}}
</div>
</body>
Templates.html
<template name="todos">
<ul class="collection">
{{#each todoList}}
<b> {{this.username}}</b>
{{/each}}
</ul>
</template>
Helpers.js
Template.todos.helpers({
todoList:function(){
return Collections.Login.find({});
}
});
global.js
Collections = {};
Collections.Login = new Mongo.Collection("login");