标签: ruby ruby-on-rails-3
根据我reading in the docs的内容,不推荐使用before_filter方法。
before_filter
这个问题有两个方面:首先,这是正确的(它在Rails 3中不起作用,所以我很确定它是这样),其次,使用Rails /复制该方法的另一种方法是什么Ruby的内置方法?
从我能找到的,没有类似的东西,但我可以在错误的地方寻找。
答案 0 :(得分:5)
Rails 4.2's changelogs mention that all *_filter methods are going away in favor of their *_action counterparts.
*_filter
*_action
Rails 4.2之前的版本可以随意使用before_filter。版本4.2及更高版本应使用before_action(和朋友)。
before_action