3

我需要一个与 Rails 2.3.x 等效的 config.filter_parameters (Rails 3.xx)

module SampleApp
  class Application < Rails::Application
    # Configure sensitive parameters which will be filtered from the log file.
    config.filter_parameters += [:password]
  end
end

这适用于 Rails 3,但它需要 Rails 2.3.x 中的功能。

4

1 回答 1

5

将以下内容放入控制器中:

filter_parameter_logging :password

您可以将其放入您的应用程序控制器并将行为扩展到您的所有控制器,或者您可以将其放入需要过滤的控制器中。我推荐应用程序控制器方法,因为它更像是一种不易出错的白名单方法。

于 2011-04-20T18:42:03.547 回答