在铁轨中的红宝石中按日期降序排序

时间:2016-03-18 11:33:27

标签: ruby-on-rails ruby sorting

我想按日期降序排序我的列表作为“新用户列表”,在数据库中我有一列

t.datetime "created_at",                                      null: false  

这是新用户注册的时间,在视图中,我有这样的代码:

%table.table.table-striped.table-hover
      %thead
      %h3 New Users
      %hr
        %th Name
        %th Company
        %th Role
        %th Created date
        %th{:width => '50'}
        %th{:width => '50'}
        %th{:width => '50'}
      %tbody
      - @users.each do |user|
        -if user.role == "trial-member"
          - @created_at.sort{|a,b| b.created_at <=> a.created_at}.each do |created_at|
            %tr
            %td
              = user.first_name
              = user.last_name
            %td= user.company
            %td= user.role
            %td= user.created_at
            %td= link_to 'Approve', edit_user_path(user),  {:class => 'btn btn-success btn-sm'}

但是这给出了一个错误“nil:NilClass的未定义方法`排序”,我该如何按表创建日期对表中的列表进行排序?谢谢。

2 个答案:

答案 0 :(得分:15)

在您的控制器中:

@users = User.order('created_at DESC')

只需在您提取order('created_at DESC')的逻辑中添加:@users

在您看来,您现在可以摆脱- @created_at.sort{|a,b| b.created_at <=> a.created_at}.each

%h3 New Users
%table.table.table-striped.table-hover
  %thead
    %tr
      %th Name
      %th Company
      %th Role
      %th Created date
      %th{:width => '50'}
      %th{:width => '50'}
      %th{:width => '50'}
  %tbody
    - @users.each do |user|
      -if user.role == "trial-member"
        %tr
          %td
            = user.first_name
            = user.last_name
          %td= user.company
          %td= user.role
          %td= user.created_at
          %td= link_to 'Approve', edit_user_path(user),  {:class => 'btn btn-success btn-sm'}

您看到的错误是因为@created_at不是可枚举的对象,因此它不响应sort

答案 1 :(得分:0)

这是因为 @created_at 没有在任何地方定义。因此,任何未定义的实例变量默认返回 nil。如果要按排序顺序显示用户,则需要按顺序获取@users

@users = User.order(created_at: :desc)