rails 3,如何路由find_or_create_by

时间:2011-12-14 02:07:15

标签: ruby-on-rails ruby-on-rails-3

我有一个find_or_create_by:

def create
     @code = Code.find_by_code(params[:redemption][:code])
     @redemption = @code.redemptions.find_or_create_by_user_id(current_user.id) 
      if @redemption.save
        redirect_to bands_url, :notice => "Redemption Successful."
      else
        redirect_to bands_url, :notice  => "Could not redeem code"
      end
  end

如果用户“赎回”一次代码,代码就可以正常工作。如果他们试图再次兑换相同的代码,它仍会发出通知“Redemption Successful”...我认为这是因为它找到了一个@ code.redemption ...我怎么能这样做,如果它创建了一个兑换,它说“救赎成功”即使没有创造新的赎回......它只是找到了它。我想说:“救赎已经使用了”

1 个答案:

答案 0 :(得分:1)

您可以执行以下操作,而不是find_or_create_by:

@redemption = @code.redemptions.find_or_initialize_by_user_id(current_user.id)
if @redemption.new_record? && @redemption.save
  redirect_to bands_url, :notice => "Redemption Successful."
else
  redirect_to bands_url, :notice => "Could not redeem code."
end

这样,您可以确定它是新记录(initialize_by)还是现有记录(查找)