作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 ApplicationController 中有一个身份验证方法,我总是想先运行它。我在子 Controller 中还有一个方法,我想在身份验证方法之后运行,但在其他 ApplicationController before_actions 之前运行。换句话说,我想要这个:
ApplicationController
before_action first
before_action third
OtherController < ApplicationController
before_action second
first
->
third
->
second
.
first
->
second
->
third
.
ApplicationController
prepend_before_action first
before_action third
OtherController < ApplicationController
prepend_before_action second
second
->
first
->
third
.
first
->
second
->
third
?
最佳答案
您可以使用 prepend_before_action
像这样:
class ApplicationController < ActionController::Base
before_action :first
before_action :third
end
class OtherController < ApplicationController
prepend_before_action :third, :second
end
关于ruby-on-rails - rails : prepend_before_action in superclass,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35560667/
我的 ApplicationController 中有一个身份验证方法,我总是想先运行它。我在子 Controller 中还有一个方法,我想在身份验证方法之后运行,但在其他 ApplicationCo
我的代码库包含回调,如prepend_before_action :authenticate_api_user!和before_action :authenticate_api_v1_user!这两者
我想对 Devise registration controller 的 new 和 create 函数强制执行身份验证,因为我正在实现一个需要管理员先登录的自定义注册机制。 但 Devise 正在使
我是一名优秀的程序员,十分优秀!