我在集合中有一个 json 对象,我需要在页面上显示它。这是我所做的:我首先调用helpers template
then 从集合中获取 json 对象:我使用的是 coffeescirpt 和 jam-handlebars,这是我在 coffeescript 中的代码:
Template.test.helpers
test: ->
test = Question.find().fetch();
test
在控制台中,当我执行Question.find().fetch()
以下操作时:
QuestionData: Object
question1: "How many kids do I have ?"
question2: "when will i die ?"
question3: "how many wife do i have ?"
question4: "test"
__proto__: Object
_id: "w9mGrv7LYNJpQyCgL"
userid: "ntBgqed5MWDQWY4xt"
specialNote: "Rohan ale"
现在在翡翠中,当我通过以下方式调用模板时:
template(name="hello")
.test {{QuestionData}}
我只能看到[object] [object]
. 要查看问题 1、问题 2,我必须执行以下操作:
template(name="hello")
.test {{QuestionData.question1}}, {{QuestionData.question2}}
如何在不做的情况下动态显示所有问题{{QuestionData.question1}}
...
先感谢您 !!!