Meteor JS Jade模板无法正常工作

时间:2015-03-06 11:29:24

标签: javascript html node.js meteor pug

我尝试使用此示例代码轻松搜索此程序包https://github.com/matteodem/meteor-easy-search/

<template name="searchBox">
    {{> esInput index="players" placeholder="Search..." }}

    <ul>
        {{#esEach index="players"}}
           <li>Name of the player: {{name}}</li>
        {{/esEach}}
    </ul>
 </template>

并将其转换为玉

template(name="searchBox")
  +esInput index="players" placeholder="Search..." 
  ul
    esEach index="players"
      li Name of the player: {{name}}

如果我使用html格式搜索有效,但是当我使用玉格式时没有错误但搜索不会显示。我是否正确地将html转换为玉?任何想法为什么玉不起作用?

1 个答案:

答案 0 :(得分:2)

esEach应为+esEach。现在至少有30个字符。