如何从 Ruby on Rails 中的 RJS 助手访问视图助手?

发布于 2024-10-17 15:26:54 字数 342 浏览 8 评论 0原文

我在多个 RJS 文件中重复了一些 RJS 的常见部分,因此想将其放入帮助程序中。

我向 app/helpers/application_helper.rb 添加了一个方法,就像我通常为 html.erb 文件添加的方法一样。该方法有效,但它无法调用 RJS 文件可以调用的视图助手。

RJS 文件中有效的行之一是:

notices = flash.collect { |type,msg| content_tag(:p, msg, :class => type) }

但是 content_tag 无法从 RJS 帮助程序访问。为什么不呢?我如何从那里访问它?

I had some common bits of RJS that I was repeating in multiple RJS files, and so wanted to put it into a helper.

I added a method to app/helpers/application_helper.rb just like I would normally for an html.erb file. The method works, except that it can't call view helpers that the RJS file could.

One of the lines that worked in the RJS file was:

notices = flash.collect { |type,msg| content_tag(:p, msg, :class => type) }

But content_tag is not accessible from the RJS helper. Why not, and how do I access it from there?

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

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

发布评论

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

评论(1

淡淡绿茶香 2024-10-24 15:26:54

像这样的事情怎么样?

#application_helper.rb
def view_helpers
  ActionController::Base.helpers
end

def do_it
  view_helpers.content_tag :div, :class => 'yes'
end

您也必须在从 rjs 调用的任何方法中使用 view_helpers ,这不是很好,但我在模型中尝试过它(仅在 2.3 和 3.1 中获得项目)并且有效...

what about something like this?

#application_helper.rb
def view_helpers
  ActionController::Base.helpers
end

def do_it
  view_helpers.content_tag :div, :class => 'yes'
end

You have to use view_helpers in any method you call from rjs too, which is not very nice, but I tried it in the model (got projects only in 2.3 and 3.1) and that worked...

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