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(即未加载流星标题)。
我错过了什么?
答案 0 :(得分:1)
添加铁路由器( - :
mrt add iron-router
试试这个:
Router.map(function() {
this.route('hi', {
path: '/hi',
template: 'hello'
});
});
并改为
<body>
{{> yield}}
</body>