- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 Controller :
class FirstController < ApplicationController
helper_method :contoller_method
private
def contoller_method
"text"
end
end
contoller_method
在另一个 Controller 看来?有最佳实践吗?
最佳答案
将该方法放入 application_controller.rb
.然后它将对您的所有 Controller 可用。
如果你只想在两个类(class)之间共享它,你可以做这样的事情。创建一个名为 helper Controller 的新 Controller ,并从它继承第一个/第二个 Controller 。
class FirstController < HelperController
end
class SecondController < HelperController
end
class HelperController < ApplicationController
helper_method :contoller_method
private
def contoller_method
"text"
end
end
关于ruby-on-rails - rails : Use helper_method from one controller in another,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4174593/
我想知道为什么有人应该在 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 中定义
我是一名优秀的程序员,十分优秀!