4

一个例子:

如果我想在用户名上附加一个“@”,使用 handlebars.js,我会这样做:

@{{username}}

但是,如果我想使用自定义助手并将其应用于整个文本块(包括“@”)而不仅仅是表达式怎么办?像这样的东西...

handlebars.registerHelper('color', function(text) {
    return text.red;
});

{{color "@"username}}

上面的模板无效,但你明白了......

4

1 回答 1

6

您可以这样做,例如:

<script id="template" type="text/x-handlebars-template">
    <ul>
        {{#each links}}
        <li><a href="{{ url }}">{{{color prefix title}}}</a></li>
        {{/each}}
    </ul>
</script>
<script>
Handlebars.registerHelper("color", function(prefix, title) {
    return '<span style="color: blue">' + (prefix ? prefix : "@") + title + '</span>';
}); // "@" is the default prefix

source = document.getElementById("template").innerHTML;
template = Handlebars.compile(source);
document.write(template({
    links: [
        {title: "prologin", prefix: "#", link: "http://prologin.org"},
        {title: "1.2.1", prefix: "§", link: "#paragraph-121"},
        {title: "jjvie", link: "http://twitter.com/jjvie"},
    ]
}));
</script>

<span class="username"></span>或者<hl></hl>会更好。

于 2012-06-01T00:05:19.857 回答