我希望管理员能够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
(甚至不是空数组)。我究竟做错了什么?