當我運行它時,沒有任何東西顯示在瀏覽器中。 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) {
}
進出口新的流星請多多包涵。此代碼用於顯示當前時間。幫助讚賞,謝謝
嘿,我不使用流星,但流星教程網站上的例子顯示模板標籤是外部的身體,不知道這是否會影響你的結果。 [實施例](https://www.meteor.com/tutorials/blaze/templates) – AranDG
@AranDG哈哈我的愚蠢的。它的工作現在。非常感謝你的兄弟:)我的壞哈哈 –
@Siddarth不用擔心,我相信@KФ發佈了同樣的解決方案作爲下面的答案。我不能,因爲我沒有流星來測試,確保他們得到代表,因爲他們毫無疑問地調試過它 – AranDG