ruby-on-rails – Rails:如何向每个页面添加标题

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails:如何向每个页面添加标题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Rails应用程序的每个视图中添加页眉和页脚的标准方法是什么?

解决方法

如果找到该文件,它将被使用.

应用程序/视图/布局/ application.html.erb

<!doctype html>
<html>
  <head>
    <!-- stuff -->
  </head>
  <body>
    <!-- this is where content will be rendered -->
    <%= yield %>
  </body>
</html>

否则,您可以拨打其他电话.

# app/controllers/birds_controller.rb
class BirdsController < ApplicationController

  layout :birds   # looks for app/views/layouts/birds.html.erb

  # ...
end

猜你在找的Ruby相关文章