- Ruby on Rails 教程
- Ruby on Rails - 首页
- Ruby on Rails - 简介
- Ruby on Rails - 安装
- Ruby on Rails - 框架
- Ruby on Rails - 目录结构
- Ruby on Rails - 示例
- Ruby on Rails - 数据库设置
- Ruby on Rails - Active Records
- Ruby on Rails - 迁移
- Ruby on Rails - 控制器
- Ruby on Rails - 路由
- Ruby on Rails - 视图
- Ruby on Rails - 布局
- Ruby on Rails - 脚手架
- Ruby on Rails - AJAX
- Ruby on Rails - 文件上传
- Ruby on Rails - 发送邮件
- Ruby on Rails 资源
- Ruby on Rails - 参考指南
- Ruby on Rails - 快速指南
- Ruby on Rails - 资源
- Ruby on Rails - 讨论
- Ruby 教程
- Ruby 教程
Ruby on Rails - 布局
布局定义了 HTML 页面的周围环境。它是定义最终输出的通用外观和感觉的地方。布局文件位于 app/views/layouts 中。
此过程涉及定义布局模板,然后让控制器知道它的存在并使用它。首先,让我们创建模板。
在 app/views/layouts 中添加一个名为 standard.html.erb 的新文件。您通过文件名让控制器知道要使用哪个模板,因此建议遵循相同的命名方案。
将以下代码添加到新的 standard.html.erb 文件中并保存更改 -
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns = "http://www.w3.org/1999/xhtml"> <head> <meta http-equiv = "Content-Type" content = "text/html; charset = iso-8859-1" /> <meta http-equiv = "Content-Language" content = "en-us" /> <title>Library Info System</title> <%= stylesheet_link_tag "style" %> </head> <body id = "library"> <div id = "container"> <div id = "header"> <h1>Library Info System</h1> <h3>Library powered by Ruby on Rails</h3> </div> <div id = "content"> <%= yield -%> </div> <div id = "sidebar"></div> </div> </body> </html>
您刚刚添加的所有内容都是标准的 HTML 元素,除了两行。stylesheet_link_tag 辅助方法输出一个样式表 <link>。在本例中,我们链接了 style.css 样式表。yield 命令让 Rails 知道它应该放置此处调用的方法的 html.erb。
现在打开 book_controller.rb 并将以下行添加到第一行下方 -
class BookController < ApplicationController layout 'standard' def list @books = Book.all end ...................
它指示控制器我们希望使用 standard.html.erb 文件中提供的布局。现在尝试浏览书籍,这将生成以下屏幕。
添加样式表
到目前为止,我们还没有创建任何样式表,因此 Rails 使用默认样式表。现在让我们创建一个名为 style.css 的新文件并将其保存在 /public/stylesheets 中。将以下代码添加到此文件中。
body { font-family: Helvetica, Geneva, Arial, sans-serif; font-size: small; font-color: #000; background-color: #fff; } a:link, a:active, a:visited { color: #CD0000; } input { margin-bottom: 5px; } p { line-height: 150%; } div#container { width: 760px; margin: 0 auto; } div#header { text-align: center; padding-bottom: 15px; } div#content { float: left; width: 450px; padding: 10px; } div#content h3 { margin-top: 15px; } ul#books { list-style-type: none; } ul#books li { line-height: 140%; } div#sidebar { width: 200px; margin-left: 480px; } ul#subjects { width: 700px; text-align: center; padding: 5px; background-color: #ececec; border: 1px solid #ccc; margin-bottom: 20px; } ul#subjects li { display: inline; padding-left: 5px; }
现在刷新浏览器并查看区别 -
接下来是什么?
下一章将解释如何使用 Rails 脚手架开发应用程序,以允许用户访问数据库中任何记录的添加、删除和修改。
广告