この男と同様の問題があります: Rails 4 with has_scope: はサイレントに失敗します
しかし、彼の答えは私の状況を助けませんでした。次のコードで has_scope gem を使用しています。
#model
class Inbox < ActiveRecord::Base
has_paper_trail
has_many :requests
belongs_to :match_rule
scope :by_person, -> person { where(Request.where(inbox_id: params[:id]).person[:first_name] => person) }
end
#controller
class InboxesController < ApplicationController
before_action :authorize
before_action :set_inbox, only: [:show, :edit, :update, :destroy]
before_filter :set_paper_trail_whodunnit
has_scope :by_person
def show
@requests = apply_scopes(Request.where(inbox_id: params[:id]).paginate(:page => params[:page], :per_page => 20))
end
private
def set_inbox
@inbox = Inbox.find(params[:id])
end
次に、URL http://localhost:3000/inboxes/3?by_person=Meghanを使用すると、このエラーが発生します
undefined method `by_person' for #<Request::ActiveRecord_Relation:0x007fadf72a3148>
この行の
@requests = apply_scopes(Request.where(inbox_id: params[:id]).paginate(:page => params[:page], :per_page => 20))
名で動作するようになったら、他のすべてのものに移動してフィルタリングします。この状況での助けや指導に感謝します!