我是流星的新手。我按照教程并成功制作了如下的简单界面。我尝试找到示例添加像this这样的菜单/子主题,点击时不会重新加载页面,但我找不到任何示例。你能告诉我一个如何做到这一点的例子吗?
simple-todos.html 中的
<head>
<title>Todo List</title>
</head>
<body>
<div class="container">
<header>
<h1>Todo List</h1>
</header>
<ul>
{{#each tasks}}
{{> task}}
{{/each}}
</ul>
</div>
</body>
<template name="task">
<li>{{text}}</li>
</template>
simple-todos.js 中的
if (Meteor.isClient) {
// This code only runs on the client
Template.body.helpers({
tasks: [
{ text: "This is task 1" },
{ text: "This is task 2" },
{ text: "This is task 3" }
]
});
}
答案 0 :(得分:1)
您可以使用IronRouter(Guide)或FlowRouter包来实现它。
答案 1 :(得分:0)
是的,您可以使用meteor-useraccounts包来实现此功能。 Here是此软件包的实时示例。
为了您的理解,您可以通过完整的documentation。