Before_filter for rails 3?

时间:2011-08-31 00:40:28

标签: ruby ruby-on-rails-3

根据我reading in the docs的内容,不推荐使用before_filter方法。

这个问题有两个方面:首先,这是正确的(它在Rails 3中不起作用,所以我很确定它是这样),其次,使用Rails /复制该方法的另一种方法是什么Ruby的内置方法?

从我能找到的,没有类似的东西,但我可以在错误的地方寻找。

1 个答案:

答案 0 :(得分:5)

Rails 4.2's changelogs mention that all *_filter methods are going away in favor of their *_action counterparts.

Rails 4.2之前的版本可以随意使用before_filter。版本4.2及更高版本应使用before_action(和朋友)。