作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道使用模板可以显示多个文档及其属性,例如:
// html
<template name="hello">
{{#each greetings}}
{{message}}
{{/each}}
</template>
// js
Template.hello.greetings = function() {
return Greetings.find();
}
return Greetings.findOne({'id' : Session.get("greeting_id")});
的东西
<template name="hello">
{{message}}
</template>
Template.hello.greeting = function() {
var greeting = Greetings.findOne({'id' : Session.get("greeting_id")})
if (greeting)
return greeting;
return {message: ""};
}
最佳答案
Handlebars.js 还有一个 #with helper .
<template name="hello">
{{#with greeting}}
{{message}}
{{/with greeting}}
</template>
Template.hello.greeting = function() {
return Greetings.findOne({'id' : Session.get("greeting_id")});
}
关于meteor - 与使用 find() 游标的 #each 相比,使用模板如何使用带有一个 'record' 的 {{attribute}} ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10600477/
我是一名优秀的程序员,十分优秀!