0

before_filter のアクションを定義するだけでなく、アクションのコントローラーも定義することは可能ですか? before_filter メソッドを application_controller に入れたいのですが、そこで定義すると、たとえば次のようになります。

before_filter :authorize, except: [:index]

index アクションを持つすべてのコントローラーが影響を受けます。私はそのようなものを書きたいと思います:

before_filter :authorize, except: [user#index]

ありがとう

4

2 に答える 2

0

users_controller に before フィルターを入れてみませんか?

class UsersController < ApplicationController
  before_filter :authorize, except: [:index]
  ...
end
于 2013-10-16T20:00:32.920 に答える