ruby-on-rails – Rails:如何向每个页面添加标题
发布时间:2020-12-16 20:40:44 所属栏目:百科 来源:网络整理
导读:在Rails应用程序的每个视图中添加页眉和页脚的标准方法是什么? 解决方法 如果找到该文件,它将被使用. 应用程序/视图/布局/ application.html.erb !doctype htmlhtml head !-- stuff -- /head body !-- this is where content will be rendered -- %= yield
在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 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |