非常基本的流星路由到模板

时间:2014-04-24 08:18:20

标签: templates meteor router

Meteor 0.8.0.1 - 我从文档中了解到的,这个最小的应用程序

<head>
  <title>Meteor Routing Test</title>
</head>

<body>
  {{> renderPage}}
</body>

<template name="hello">
  <h1>Hello World!</h1>
</template>

Meteor.Router.add({
  '/hi':'hello',
});

应该在localhost:3000/hi上获取并呈现名为hello的模板。而是将文本 hello 呈现为空的html(即未加载流星标题)。

我错过了什么?

1 个答案:

答案 0 :(得分:1)

添加铁路由器( - :

mrt add iron-router

试试这个:

Router.map(function() {
  this.route('hi', {
    path: '/hi',
    template: 'hello'
  });
});

并改为

<body>
  {{> yield}}
</body>