我想显示所有发现天的所有价格。
在控制器视图中
def view
@travel = Travel.find(params[:id])
@car = Car.find(:first, :conditions => ["id = ?", @travel.car_id])
@start_day = StartDay.find(:all, :conditions => ["travel_id = ?", @travel.id])
@import_price = ImportPrice.find(:all,
:conditions => ["begin_date = ? and car_code = ?",
@start_day.day, @car.short_name])
end
当我添加值 @import_price 出现错误:
undefined method `day' for #<Array:0x7feb70d56fe8>
我如何为所有日子做出正确的选择?
提前致谢。
红宝石 1.8.7 轨道 2.3