如何从另一个辅助方法内部调用 Rails 辅助方法?

发布于 2024-09-13 19:38:21 字数 41 浏览 3 评论 0 原文

我正在编写一个助手,需要调用另一个助手来生成 html。我该怎么做?

I am writing a helper that needs to call another helper, which generates html. How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

牛↙奶布丁 2024-09-20 19:38:21

尝试:
包括另一个助手

try:
include AnotherHelper

小霸王臭丫头 2024-09-20 19:38:21

只要调用它即可。

如果它位于不同的帮助程序文件中,则控制器可以使用控制器方法“helper"

添加:

这是一个示例:

# in the view
<%= my_helper %>

# in the helper file
def my_helper
  "<div>" + someother_helper_which_generates_html + "</div>"
end

** 如果这没有帮助,请在您的问题中添加更多详细信息......

Just call it.

If it is in a different helper file, your controller can include the other helpfile by using the controller method "helper"

Added:

Here is an example:

# in the view
<%= my_helper %>

# in the helper file
def my_helper
  "<div>" + someother_helper_which_generates_html + "</div>"
end

** Please add more details to your question if this isn't helping....

深陷 2024-09-20 19:38:21

像这样的东西应该对您有帮助(例如,在 application_helper.rb 中)

module ApplicationHelper

  def create_div
    html("this is some content")
  end

  def html(content)
    "<div>#{content}</div>"
  end

end

在这种情况下,create_div 方法正在使用字符串作为参数调用 html 方法。 html 方法返回一个 HTML 字符串,其中嵌入了您提供的参数。从某种角度来看,它看起来像:

<%= create_div %>

希望这有帮助!

Something like this should help you (say, in application_helper.rb)

module ApplicationHelper

  def create_div
    html("this is some content")
  end

  def html(content)
    "<div>#{content}</div>"
  end

end

In this case, the create_div method is calling the html method with a string as an argument. the html method returns a string of HTML with the argument you supply embedded. in a view, it would look like:

<%= create_div %>

hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文