使用自定义对象名称渲染异构集合

发布于 2025-01-07 21:55:21 字数 527 浏览 0 评论 0原文

在我的 Rails 应用程序中,我有一个从 Event::Base < 继承的对象的 @events 集合。 AR::Base 模型。

如果像 render :partial => 那样渲染它'事件', :collection => @events 可以给出一个选项 :as =>; :event 更改与部分内部对象相对应的局部变量的名称。但是当部分的名称不是常量时该怎么办呢?上述方式(render @events, :as => :event)不起作用。

附言。 博客中有一个解决方案.obiefernandez.com 但它使用部分名称的最后一部分,这不适合我。

In my Rails app I have an @events collection of objects inherited from Event::Base < AR::Base model.

If rendering it like render :partial => 'event', :collection => @events it's possible to give an option :as => :event to change the name of a local variable corresponding to the object inside of the partial. But what to do when the name of the partial is not constant? The aforementioned way (render @events, :as => :event) doesn't work.

PS. There's a solution at blog.obiefernandez.com but it uses the last part of the partial name and this just doesn't fit for me.

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

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

发布评论

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

评论(1

七婞 2025-01-14 21:55:21

我自己没有尝试验证,但这可能有效:

class Event < ActiveRecord::Base

  def to_partial_path
    # assuming that you need different partials based on an attribute "variety"
    "events/#{variety}"
  end

end

您可能还需要使用 :partial 键,例如: render :partial =>; @events,:as => :event 而不是 render @events,:as => :event

编辑:这仅适用于 Rails 3.2+ ...请参阅 Obie 关于该主题的文章

I haven't tried this myself to verify, but this might work:

class Event < ActiveRecord::Base

  def to_partial_path
    # assuming that you need different partials based on an attribute "variety"
    "events/#{variety}"
  end

end

You may also need to use the :partial key, eg: render :partial => @events, :as => :event instead of render @events, :as => :event

EDIT: This only works in Rails 3.2+ ... see Obie's writeup on the topic.

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