0

我希望管理员能够Rides在他的仪表板页面上查看列表admin_dash#index(它以典型的方式遍历表中的每个变量)。

这是管理破折号的控制器:

class AdminDashController < ApplicationController
  def index
    @pending_rides = Ride.find_by_completed(false)
    @completed_rides = Ride.find_by_completed(true)
  end
end

rails console中,这些精确的搜索返回正确的结果。但在视图中,这两个变量似乎都是nil(甚至不是空数组)。我究竟做错了什么?

4

1 回答 1

1

尝试使用Ride.find_all_by_completed(bool)

于 2013-01-02T02:36:40.107 回答