为什么我的meteorjs没有在身体上显示任何东西?

时间:2015-08-27 20:01:01

标签: html meteor spacebars

这是我的HTML文件。它没有显示" hi",但它显示了#34;欢迎来到丑陋的行政方面。"

<head>
    Welcome to the ugly administrative side.

</head>

<body>
    hi
    {{#if currentUser}}
        Hello {{> loginButtons}}<br>
        {{> home}}
    {{else}}
        {{> loginButtons}}
    {{/if}}

</body>

<template name="home">
    {{#if adminFlag}}
        {{> adminPage}}
    {{else}}
        You aren't an administrative user, there's nothing for you here.
    {{/if}}
</template>

1 个答案:

答案 0 :(得分:0)

我很确定这是TextMate的一个小故障,因为它一直意外地关闭。当TextMate停止表演时,它开始正常显示。