因此,我想将元内容添加到我的每个博客文章中,但是我希望它可以更新全局设置的元信息。我一直在尝试使用把手,SQL和JS的混合物来完成此操作,但是我很挣扎。据我所知,您无法使用像这样的把手访问DOM元素;
$('meta[name=description]').attr('content', string);
目前,以下元描述已在配置表中设置。我要添加的元描述设置在发布表中
这是在我的main.hbs中
{{#config}}
<head>
<meta name="description" content="{{meta_description}}">
{{/config}}
我正在尝试使用的帮助器(也在main.hbs中)
{{#meta}}
{{#if META}}
{{#metaHelper2 META}}
{{/metaHelper2}}
{{/if}}
{{/meta}}
帮助文件
metaHelper: function(string) {
if (string) {
return string.replace( string)
}
}