我甚至不知道如何搜索这个。
我有一个数据库,我试图从2个表中提取数据。
在1表格数据格式
subscriber_advance
class Catalog < ActiveRecord::Base
belongs_to :user
belongs_to :product, class_name: 'Shoppe::Product'
accepts_nested_attributes_for :product
accepts_nested_attributes_for :user
end
现在我的请求必须从两个表中提取数据而没有像格式
这样的重复数据module Shoppe
class Product < ActiveRecord::Base
# Catalogs which are associated with this product
has_many :catalogs
has_many :users, class_name: 'User', through: :catalogs
end
end
使用了这种恢复,但花了更多的时间和我的会话有时间