继承的资源:无法在 polymorphic_belongs_to 中获取父级
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论