1.Time#strftime
2. time.strftime( string ) => string
3.
4. Formats _time_ according to the directives in the given format
5. string. Any text not listed as a directive will be passed through
6. to the output string.
7.
8. Format meaning:
9.
10. %a - The abbreviated weekday name ("Sun")
11. %A - The full weekday name ("Sunday")
12. %b - The abbreviated month name ("Jan")
13. %B - The full month name ("January")
14. %c - The preferred local data and time representation
15. %d - Day of the month (01..31)
16. %H - Hour of the day, 24-hour clock (00..23)
17. %I - Hour of the day, 12-hour clock (01..12)
18. %j - Day of the year (001..366)
19. %m - Month of the year (01..12)
20. %M - Minute of the hour (00..59)
21. %p - Meridian indicator ("AM" or "PM")
22. %S - Second of the minute (00..60)
23. %U - Week number of the current year, starting with the first Sunday as the first
24. day of the first week (00..53)
25. %W - Week number of the current year, starting with the first Monday as the first
26. day of the first week (00..53)
27. %w - Day of the week (Sunday is 0, 0..6)
28. %x - Preferred representation for the date alone, no time
29. %X - Preferred representation for the time alone, no date
30. %y - Year without a century (00..99)
31. %Y - Year with century
32. %Z - Time zone name
33. %% - Literal "%" character
34.
35. t = Time.now
36. t.strftime("Printed on %m/%d/%Y") #=> "Printed on 04/09/2003"
37. t.strftime("at %I:%M%p) #=> "at 08:56AM"
分享到:
相关推荐
### Rails 101 入门电子书知识点详解 #### 一、简介 《Rails 101 入门电子书》是一本非常适合初学者直接入门的书籍,它由xdite编写并出版于2014年6月10日。本书主要针对的是希望学习Ruby on Rails框架的读者,特别...
《Rails101_by_rails4.0》是一本专注于Rails 4.0.0版本和Ruby 2.0.0版本的自学教程书籍,它定位于中文读者,旨在成为学习Rails框架的参考教材。Rails(Ruby on Rails)是一个采用Ruby语言编写的开源Web应用框架,它...
Ruby on Rails,通常简称为Rails,是一个基于Ruby编程语言的开源Web应用框架,遵循MVC(Model-View-Controller)架构模式。这个“Rails项目源代码”是一个使用Rails构建的图片分享网站的完整源代码,它揭示了如何...
- **类型**:Rails提供了多种内置的验证类型,如`presence`、`uniqueness`、`format`等。 #### 三、关联 - **定义**:关联是指定义模型之间的关系,如一对一、一对多等。 - **示例**:例如,在博客系统中,一篇...
Ruby on Rails,简称Rails,是由David Heinemeier Hansson基于Ruby语言开发的一个开源Web应用程序框架,它遵循敏捷开发的理念,致力于提高开发效率和代码的可读性。在Rails 3.1版本中,引入了许多重要更新和改进,...
Rails 3.1 和 Cucumber-Rails 1.2.0 是两个在Web开发领域非常重要的工具,尤其对于Ruby on Rails框架的测试和自动化流程。本文将深入探讨这两个组件,以及它们如何协同工作来增强软件开发的效率和质量。 首先,...
rails g scaffold person name:string bio:text birthday:date ``` 如果需要创建一个单独的Model,可以执行: ```bash rails g model article ``` 而要删除已经创建的Model,可以使用: ```bash rails destroy ...
从给定的文件信息来看,我们正在探讨的是一本关于Ruby on Rails的书籍,书名为《Simply Rails2》,作者是Patrick Lenz。本书旨在为初学者提供深入理解Ruby on Rails框架的指南,从基础概念到高级主题均有涵盖,是...
标题 "Rails" 指的是 Ruby on Rails,一个开源的Web应用程序框架,它基于Ruby编程语言,遵循MVC(模型-视图-控制器)架构模式。Rails由David Heinemeier Hansson在2004年创建,其设计理念是强调代码的简洁性、DRY...
Rails指南中文版是针对Ruby on Rails框架的一份详尽教程,旨在帮助开发者深入理解并熟练掌握这个强大的Web应用开发工具。Ruby on Rails(简称Rails)是一个基于Ruby语言的开源Web应用框架,它遵循MVC(Model-View-...
在开发Web应用时,Ruby on Rails(简称Rails)框架因其高效、简洁的代码风格和强大的社区支持而备受青睐。Aptana是一款强大的集成开发环境(IDE),尤其适用于Rails项目的开发,它提供了丰富的特性来提升开发效率。...
文件中会介绍 `validates` 方法的不同校验选项,如 `presence`、`uniqueness` 和 `format`,以及 `before_save`、`after_create` 等回调方法。 3. **深入浅出说路由**: 路由是 Rails 应用的心脏,定义了 URL 如何...
Ruby on Rails 安装指南 Ruby on Rails 安装指南是指安装 Ruby 1.8.6 和 Rails 2.0.2 的详细步骤。首先,需要下载 Ruby One-Click Installer 版本,并安装 Ruby。然后,下载 Rails 2.0.2 版本,并安装。接下来,...
rails 2.3.2离线安装rails 2.3.2离线安装rails 2.3.2离线安装rails 2.3.2离线安装rails 2.3.2离线安装rails 2.3.2离线安装rails 2.3.2离线安装rails 2.3.2离线安装rails 2.3.2离线安装rails 2.3.2离线安装rails ...
Rails Recipes是一本针对Ruby on Rails框架的实用书籍,它收集了一系列高效解决问题的技巧和方法,也被称为“Rails开发者的宝典”。作者们通过分享自己的经验和见解,为Rails程序员提供了一本既有实际操作指导又有...
[Pragmatic Bookshelf] Crafting Rails Applications Expert Practices for Everyday Rails Development (E-Book) ☆ 图书概要:☆ Rails 3 is a huge step forward. You can now easily extend the framework, ...
3. **设置日期控件**:在Rails视图中,找到你想要添加日期选择器的表单字段,添加`data-date-picker`或其他自定义属性以启用Datepicker: ```erb <%= f.text_field :start_date, data: { date_picker: true } %> ...
标题 "rails2.3.2" 指的是 Ruby on Rails 框架的一个特定版本,即 2.3.2。Ruby on Rails(通常简称为 Rails)是一个基于 Ruby 语言的开源 Web 应用程序框架,它遵循 Model-View-Controller (MVC) 设计模式,用于构建...
在Rails中,这通常是通过`<%= f.date_field :date_field_name %>`这样的辅助方法实现的,这里的`:date_field_name`是模型中的属性名。然后,我们可以使用WebCalendar.js为这个输入字段添加日期选择功能。在...