- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道为什么有人应该在 Controller 中使用 helper_method 来创建帮助器方法,而不是在帮助器文件中创建“正常”方式。这样做有什么好处和坏处?
最佳答案
helper_method
当功能是在 Controller 和 View 之间使用的东西时很有用。一个很好的例子是 current_user
.
如果该方法更多地处理 Controller 逻辑而不是格式化,那么它属于 Controller 。像 current_user
将在所有 Controller 之间共享,因此应在 ApplicationController
中定义.
真正的“帮助”方法处理 View 并处理诸如格式化和模板逻辑之类的事情。这些在 Controller 中很少需要,它们属于 app/helpers 下的自己的模块。您可以在需要时将它们包含在您的 Controller 中,但最终您会得到 Controller 可用的整个模块的 View 辅助方法。
关于ruby-on-rails - Controller helper_method,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3549713/
我想知道为什么有人应该在 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 中定义
我是一名优秀的程序员,十分优秀!