我尝试使用此示例代码轻松搜索此程序包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转换为玉?任何想法为什么玉不起作用?
答案 0 :(得分:2)
esEach
应为+esEach
。现在至少有30个字符。