- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想对 Devise registration controller 的 new
和 create
函数强制执行身份验证,因为我正在实现一个需要管理员先登录的自定义注册机制。
但 Devise 正在使用 prepend_before_action
对 new
和 create
强制执行 require_no_authentication
。
根据 Rails,我可以skip_before_action
,但是,
我如何强制跳过 prepend_before_action
?
最佳答案
skip_before_action
对您不起作用吗? before_action
只是一个 alias for append_before_action
并且我认为是否将回调附加或添加到允许使用 skip_before_action
跳过的回调列表并不重要。
关于ruby-on-rails - 是否可以跳过 Rails 4 中的 prepend_before_action 并设计?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36746349/
我的 ApplicationController 中有一个身份验证方法,我总是想先运行它。我在子 Controller 中还有一个方法,我想在身份验证方法之后运行,但在其他 ApplicationCo
我的代码库包含回调,如prepend_before_action :authenticate_api_user!和before_action :authenticate_api_v1_user!这两者
我想对 Devise registration controller 的 new 和 create 函数强制执行身份验证,因为我正在实现一个需要管理员先登录的自定义注册机制。 但 Devise 正在使
我是一名优秀的程序员,十分优秀!