0
我使用meta_tags
寶石來處理所有的SEO meta標籤。Ruby on Rails:meta_tags gem
但是,當我在我的application.html.haml
視圖中使用時,它顯示在頁面上,以便用戶也可以看到它。
= set_meta_tags title: "app title, keywords...."
任何想法爲什麼發生這種情況?
我使用meta_tags
寶石來處理所有的SEO meta標籤。Ruby on Rails:meta_tags gem
但是,當我在我的application.html.haml
視圖中使用時,它顯示在頁面上,以便用戶也可以看到它。
= set_meta_tags title: "app title, keywords...."
任何想法爲什麼發生這種情況?
這是HAML的行爲,而不是meta_tags gem。
-# In a HAML file, ...
= '= will evaluate the ruby code and put the result on the page'
- '- will evaluate the ruby code but not put the result on the page'
參考:http://haml.info/docs/yardoc/file.REFERENCE.html#ruby_evaluation