美文网首页
has_and_belongs_to_many 关联的数据 同步

has_and_belongs_to_many 关联的数据 同步

作者: ibob2012 | 来源:发表于2019-08-22 11:35 被阅读0次

    之前Brand类   has_and_belongs_to_many :categories, index: true

    现在在Category类 增加

    has_and_belongs_to_many :brands, index: true

    实现brand.categories关联的数据 同步到 cagegory.brands

    Category.each do |c|

      c.brand_ids = Brand.where(category_ids: c.id).collect(&:id)

      c.save

    end

    相关文章

      网友评论

          本文标题:has_and_belongs_to_many 关联的数据 同步

          本文链接:https://www.haomeiwen.com/subject/pefnsctx.html