4

我正在尝试创建自己的 Handlebars 助手,但在传递参数时遇到问题。对于上下文,我正在尝试破解 Ghost(http://tryghost.org),但我怀疑这是一个更普遍的 Handlebars 问题。

在职的

首先,一个工作示例。这是我的模板的相关部分:

<h1>{{myHelper}}</h1>

这是我的Handlebars.registerHelper方法(Ghost 重命名它但它是一样的):

ghost.registerThemeHelper("myHelper", function() { 
    console.log(this.posts[0].title); // outputs "Welcome to Ghost" to console
    return this.posts[0].title; // returns "Welcome to Ghost"
})

不工作

以下是我想要实现的目标。模板:

<h1>{{myHelper "title"}}</h1> 
<h3>{{myHelper "slug"}}</h3>

当我尝试将参数传递给方法时,它无法替换变量:

ghost.registerThemeHelper("myHelper", function(myData) { 
    console.log(this.posts[0].myData); // outputs "undefined" to console
    return this.posts[0].myData; // returns nothing
})

传递像“title”这样的字符串以便在表达式中对其进行评估的正确方法是什么?

activateTheme()对于任何好奇的 Ghost 用户,我在函数中注册了我自己的助手ghost/core/server.js

4

1 回答 1

3

console.log输出arguments

{ '0': 'title', '1': { hash: {}, data: { blog: [Object] } } }

建议助手的第一个参数是'title'当你说{{myHelper "title"}}. 如果this.posts[0]是您感兴趣的帖子,那么您想看看:

this.posts[0][myData]

得到when is的title属性。请注意,方括号用于访问普通数组(由非负整数索引)和对象(由字符串索引)。this.posts[0]myData'title'

MDN JavaScript参考中的一些时间可能会有所帮助。

于 2013-09-21T23:12:46.093 回答