ROR layout+content_for 配合用法 发表于 2014-09-18 | content_for 一般要这样用才好在view先找个地方声明123<% content_for :head do %> <%= stylesheet_link_tag 'projects' %><% end %> 之后 12345<head> <title>Todo List</title> <%= stylesheet_link_tag 'application' %> <%= yield :head %></head>