我有以下控制器代码
respond_with(@employees) do |format|
format.json { render :json => @employees.to_json(:include => :shifts) }
end
如果我想过滤包含的班次,我该怎么办?例如,通过约会。 我必须能够在控制器中设置过滤器参数。
编辑: 我想过使用:方法,但它在json对象中创建了另一个变量。它必须被称为“轮班”
答案 0 :(得分:2)
format.json { render :json => @employees.includes(:shifts).where("shifts.date > ?", your_date_here).to_json(:include => :shifts) }