当我运行它时,浏览器中什么也没有显示。
HTML:

<head>
<title>projectsiddharth</title>
</head>
<body>
<h1>Hello from india!</h1>
<div class="java">{{> timetemplate}}</div>
<template name="timetemplate">
<p>The time is now {{time}}</p>
</template>
</body>

JS:
if (Meteor.isClient) {
var data = {time: new Date()};
Template.timetemplate.helpers(data);
}

if (Meteor.isServer) {

}

我是新来的 meteor ,请多多包涵。该代码用于显示当前时间。感谢帮助,谢谢

最佳答案

尝试将模板与正文html分开。

<head>
 <title>projectsiddharth</title>
</head>
<body>
 <h1>Hello from india!</h1>
 <div class="java">{{> timetemplate}}</div>
</body>

<template name="timetemplate">
 <p>The time is now {{time}}</p>
</template>

08-15 18:23