Assemble 模板中的字符串连接
Assemble string concat in template
我想在模板中连接两个字符串,例如:
{{>
masthead
title=car-and.panel1.title
image= (imageBase "myimage.jpg")
height="100"
}}
所以我想用 assemble 注册一个 concat 助手。 None 我在文档中找到的方法似乎可行。
我有帮手:
module.exports.register = function (Handlebars) {
Handlebars.registerHelper("imageBase", (path) => "/images/" + path);
};
我正在使用这些选项初始化应用程序:
const app = assemble({
ext: "html",
helpers: ['./app/helpers/*.js' ]
});
我总是收到找不到助手的错误
看起来您正在查看一些 grunt-assemble
文档并试图将其应用到最新版本的 assemble
。我们仍在努力更新所有这些内容,但 assemble README 是开始新文档的好地方。
此外,对于助手来说,api 由 templates
提供并记录在此处:https://github.com/jonschlinkert/templates#helper
所以要更新您的代码示例,您可以这样做来注册助手:
const app = assemble();
app.helper('imageBase', (path) => '/images/' + path);
我想在模板中连接两个字符串,例如:
{{>
masthead
title=car-and.panel1.title
image= (imageBase "myimage.jpg")
height="100"
}}
所以我想用 assemble 注册一个 concat 助手。 None 我在文档中找到的方法似乎可行。 我有帮手:
module.exports.register = function (Handlebars) {
Handlebars.registerHelper("imageBase", (path) => "/images/" + path);
};
我正在使用这些选项初始化应用程序:
const app = assemble({
ext: "html",
helpers: ['./app/helpers/*.js' ]
});
我总是收到找不到助手的错误
看起来您正在查看一些 grunt-assemble
文档并试图将其应用到最新版本的 assemble
。我们仍在努力更新所有这些内容,但 assemble README 是开始新文档的好地方。
此外,对于助手来说,api 由 templates
提供并记录在此处:https://github.com/jonschlinkert/templates#helper
所以要更新您的代码示例,您可以这样做来注册助手:
const app = assemble();
app.helper('imageBase', (path) => '/images/' + path);