- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用门卫将 oAuth2.0 集成到我的仅 rails-api 应用程序中。但我不断收到此错误,“ApplicationController 的未定义方法 `helper_method'”,但找不到有关如何解决它的明确解决方案。下面是我的 application_controller.rb 类,它有 helper_method。我正在关注下面链接上的教程,任何帮助将不胜感激。
https://www.sitepoint.com/getting-started-with-doorkeeper-and-oauth-2-0/
class ApplicationController < ActionController::API
private
def current_user
@current_user ||= User.find(session[:user_id]) if session[:user_id]
end
helper_method :current_user
end
最佳答案
Andy Gauge 的回答是正确的;修复不正确。如果您想包含 Helpers 模块,同时仍将您的应用程序保持为“rails-api”,那么只需包含该模块
class ApplicationController < ActionController::API
include ActionController::Helpers
end
关于ruby-on-rails - ApplicationController,Rails 5 的未定义方法 `helper_method',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39171741/
我想知道为什么有人应该在 Controller 中使用 helper_method 来创建帮助器方法,而不是在帮助器文件中创建“正常”方式。这样做有什么好处和坏处? 最佳答案 helper_metho
我已经在应用程序 Controller 中设置了一个辅助方法,即。 class ApplicationController #error undefined method `first_name'
好的,所以我在应用程序 Controller 中有一个辅助方法: def run_test(test_name) #computation stuff render :partial => t
当允许 Controller 方法作为 View 中的助手时,您如何传递参数? 在我的 example_controller.rb 我有 class ExampleController < Appli
我有以下 application_controller 方法: def current_account @current_account ||= Account.find_by_subdo
helper_method 很简单:它使 Controller 的部分或全部方法可供 View 使用。 什么是帮助器?是否相反,即它将辅助方法导入到文件或模块中? (也许名称 helper 和 hel
我正在尝试使用门卫将 oAuth2.0 集成到我的仅 rails-api 应用程序中。但我不断收到此错误,“ApplicationController 的未定义方法 `helper_method'”,
我在 ApplicationController 中有这个: class ApplicationController 我应该如何编写方法才能在 View 中执行此操作: 最佳答案
我有以下 Controller : class FirstController < ApplicationController helper_method :contoller_method pr
它们似乎无法从 ActionView::TestCase 访问 最佳答案 没错,辅助方法不会在 View 测试中公开 - 但它们可以在您的功能测试中进行测试。由于它们是在 Controller 中定义
我是一名优秀的程序员,十分优秀!