我正在尝试在项目中实现把手。 我的问题是,如果我在本地运行我的项目,它工作正常。 但是,当我在部署时运行它时,它会显示出来 “错误:缺少助手:”is_about_me“”
我的HTML模板是: -
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
{{#is_about_me is_about_me_filled}}
<td align="center">
<p style="margin: 0 0 10px 0; color: #727272;">+ <a href="{{orgDtls.org_url}}" style="font-size: 15px; color: #727272; text-decoration: none;">Add About Yourself</a> </p>
</td>
{{/is_about_me}}
</tr>
</table>
我的助手是: -
var handlebars = require('handlebars');
handlebars.registerHelper('is_about_me', function (isAboutMe, options) {
if (isAboutMe === 0) {
return options.fn(this);
}
});
任何帮助将不胜感激。
谢谢Shivam