我正在使用meta-tags gem,并尝试在我的视图中添加noindex和nofollow元标记。
在HAML视图文件中,我有:
- noindex_meta_tag
- content_for :head do
- display_meta_tags noindex: true, nofollow: true
在application_helper.rb
中,我有:
def noindex_meta_tag
set_meta_tags noindex: true
set_meta_tags nofollow: true
end
我已经根据我上面链接的文档尝试了很多这方面的变体,但仍然无法使其发挥作用。
我在这里做错了什么,或者是我的应用程序的另一部分问题?
答案 0 :(得分:0)
您可能需要使用=运算符输出结果,而不是 - 在HAML:
中= display_meta_tags noindex: true, nofollow: true