undefined method where
これらのパラメーターを使用して以下のコードを実行すると、エラーが発生し続けます。
誰かが私が間違っていることを見ることができますか?
ありがとう
Parameters: {"category_ids"=>["1", "3", "4"]}
@pieces = Piece.all
@pieces = @pieces.where(:category_id => params[:category_ids]) if params[:category_ids].present?
@pieces = @pieces.where(:brand_id => params[:brand_ids]) if params[:brand_ids].present?
@pieces = @pieces.where(:color_id => params[:color_ids]) if params[:color_ids].present?
@pieces = @pieces.where(:user_id => params[:friend_ids]) if params[:friend_ids].present?