Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<%= link_to(image_tag ("Logo.png"), root_url) %>
ここで何が間違っていますか?関連するすべてのスタックオーバーフローの質問とドキュメントを見てきました。
の後のスペースを削除するだけimage_tagです:
image_tag
<%= link_to(image_tag("Logo.png"), root_url) %>
それ以外の場合、Ruby は呼び出したいと想定します。
image_tag "Logo.png", root_url