这是记录购买的User,Gig(产品)和Purchase表之间的关系。
class User < ActiveRecord::Base
has_many :gigs
has_many :purchases, foreign_key: 'buyer_id'
has_many :sales, foreign_key: 'seller_id', class_name: 'Purchase'
end
class Gig < ActiveRecord::Base
has_many :purchases
has_many :buyers, through: :purchases
has_many :sellers, through: :purchases
end
class Purchase < ActiveRecord::Base
belongs_to :gig
belongs_to :buyer, class_name: 'User'
belongs_to :seller, class_name: 'User'
end
记录我在控制器中使用的购买
def downloadpage
ActiveRecord::Base.transaction do
if current_user.points >= @gig.pointsneeded
@purchase = current_user.purchases.create(gig: @gig, seller: @gig.user)
if @purchase
current_user.points -= @gig.pointsneeded
@gig.user.points += @gig.pointsneeded
current_user.save
if @gig.user.save
render 'successful_download', locals:{link:@gig.boxlink}
end
end
else
redirect_to :back, notice: "You don't have enough points"
end
end
end
当买家从卖家那里购买东西时,一切都有效,积分在账户之间转移,买家被重定向到最终的工作。
在我看来,我可以做到
<h1>You downloaded <%= current_user.purchases.count %> boxes</h1>
它将显示&#34;演出的数量&#34;买方做了。
现在我想要展示的不仅仅是数字,还有他买的产品的标题和图片。这就是我试过的。
<div class="row experiment">
<% current_user.purchases.each do |gig| %>
<div class="well for-h1-gig-second col-xs-6 col-sm-4 col-lg-3 ">
<%= link_to (image_tag gig.image.url(:medium), :class=>"img-responsive"), gig %>
<h1><%= link_to gig.title, gig %></h1>
</div>
<% end %>
</div>
但它说,它无法找到图像和标题。
所以我试过current_user.purchases.gig.each do |gig|
没有成功。
我该如何解决? P.S:请随意编辑我的标题,对于未来的读者,我无法更好地表达,谢谢。
答案 0 :(得分:2)
尝试在用户上添加关联:
class User < ActiveRecord::Base
has_many :purchases, foreign_key: 'buyer_id'
has_many :gigs, through: :purchases, source: :buyer
has_many :sales, foreign_key: 'seller_id', class_name: 'Purchase'
end
然后你应该能够遍历current_user.gigs
答案 1 :(得分:2)
你的主要问题是current_user.purchases.each
通过购买进行迭代 - 而不是演出。
<div class="row experiment">
<% current_user.purchases.each do |purchase| %>
<% gig = purchase.gig %>
<div class="well for-h1-gig-second col-xs-6 col-sm-4 col-lg-3 ">
<%= link_to(image_tag gig.image.url(:medium), :class=>"img-responsive"), gig %>
<h1><%= link_to gig.title, gig %></h1>
</div>
<% end %>
</div>
还有一些其他问题:
class User < ActiveRecord::Base
has_many :gigs # not going to work.
end
它不起作用的原因是user
和gig
之间的关系经过purchases
和buyer_id
以及seller_id
外键。 Rails不支持依赖多个键的关系。
如果您想选择用户是卖家或买家的演出,您可以使用:
Gig.joins(:purchases).where('purchases.buyer_id=? OR purchases.seller_id=?', [current_user.id, current_user.id])