继承的资源:无法在 polymorphic_belongs_to 中获取父级

发布于 2024-11-05 13:23:30 字数 861 浏览 4 评论 0原文

我在 Rails 应用程序中使用继承资源,但有一个问题:

当我在控制器之间使用多态关系时,我无法访问父对象。

根据文档,我有一个像这样的控制器:

class PhotosController < InheritedResources::Base
  belongs_to :user, :task, :polymorphic => true

  def index
    logger.debug(parent.inspect)
  end
end

但父级总是返回 nil。 它不适用于:

polymorphic_belongs_to :user, :task 

但是,如果我不使用多态关系,它就可以工作:

belongs_to :user 

belongs_to :task 

请注意,我的路线和有关继承资源的其他所有内容都工作正常。

我正在使用 Rails 2.3.10 和 InheritedResources 1.0.6,但有些人对 Rails 3 也有同样的问题。这是邮件列表中的一个帖子:http://groups.google.com/group/inherited_resources/browse_thread/thread/8d154492bad90f2d

有什么想法吗?

谢谢

I am using Inherited Resources in my Rails application but I have an issue:

I can't access the parent object when I use a polymorphic relation between my controllers.

Following the documentation, I have a controller like this:

class PhotosController < InheritedResources::Base
  belongs_to :user, :task, :polymorphic => true

  def index
    logger.debug(parent.inspect)
  end
end

But parent always returns nil.
It doesn't work either with:

polymorphic_belongs_to :user, :task 

However, it works if I don't use a polymorphic relation:

belongs_to :user 

or

belongs_to :task 

Note that my routes and everything else regarding inherited_resources work fine.

I am using Rails 2.3.10 and InheritedResources 1.0.6 but some people have the same issue with Rails 3. Here is a post in the mailing list: http://groups.google.com/group/inherited_resources/browse_thread/thread/8d154492bad90f2d

Any idea?

Thank you

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文