流星模板返回问题?

时间:2014-04-22 14:18:11

标签: meteor

我需要了解以下问题:

return Template[Session.get('renderTemplate')];

这里" Session.get(' renderTemplate')"得到模板名称。

当我使用此返回语句时,使用会话加载动态模板,但它返回[object Object]但不返回模板数据。我也不知道我做了什么错。所以,请你帮帮我。

1 个答案:

答案 0 :(得分:0)

听起来您可能没有遵循此处的说明:

https://github.com/meteor/meteor/wiki/Using-Blaze#templatefoo-is-not-a-function-and-does-not-return-a-string

可能是你正在使用:

{{myHelper}}

而不是

{{> myHelper}}

根据流星0.8的要求?