ruby 小要点说明使用has_one而不是belongs_to来利用父传递

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 小要点说明使用has_one而不是belongs_to来利用父传递相关的知识,希望对你有一定的参考价值。

class Moderation
  belongs_to :content
end

class Content
  has_many :moderations
end

class ModerationResource < ApplicationResource
  type :'moderation'
  model ::Moderation

  # Note : use has_one despite having the belongs_to key to pass the moderation to the contentResource !
  has_one :content, resource: ::Moderation::ContentResource
end

class Moderation::Content < ApplicationResource
  type :'moderation'
  model ::Moderation

  def update(attributes, moderation)
    # If we had used a `belongs_to` in the resource, +moderation+ would be nil !
    ModerationService.new(moderation).update_content_attributes(attributes)
  end
end

以上是关于ruby 小要点说明使用has_one而不是belongs_to来利用父传递的主要内容,如果未能解决你的问题,请参考以下文章

Rails Association Has_One 具有复数模型名称而不是单数且不工作

消息队列面试题要点

消息队列面试题要点

如何使用 Ruby OptionParser 指定所需的开关(不是参数)?

3.ruby语法基础,全部变量,实例变量,类变量,局部变量的使用和注意的要点

ruby 本要点展示了我如何使用Ruby AWS SDK,Fog和Carrierwave在我的应用程序中实现AWS假设角色功能