1.in_groups_of的使用,分割数组
请输入图片描述

2.更加漂亮的标题
首先在我们布局页面application.html.erb
<title>Shoppery - <%= yield(:title) || "The Place to Buy Stuff" %></title>
在我们的布局帮助模块中添加下面的方法

  def title(page_title)
    content_for(:title) {page_title}
  end

我们在视图文件中就可以使用该方法了
<%= title("首页") %>

3.格式化时间
设置系统默认时间格式

# config/initializers/time_formats.rb
Time::DATE_FORMATS[:month_and_year] = '%m-%d %M:%H'

动态时间,距离现在有多长时间函数:发布于 time_ago_in_words(item.created_at)
时间汉化文件地址:https://github.com/svenfuchs/rails-i18n/blob/master/rails/locale/zh-CN.yml

4.简单的查询表单


天赢金创
338 声望21 粉丝

天赢金创,天赢金创,天赢金创,天赢金创,天赢金创,天赢金创天赢金创,天赢金创


引用和评论

0 条评论