有什么方法可以让模型执行类似的错误消息flash[:notice]
??
我想避免两次将相同的数据输入到我的数据库中。
before_save :no_duplication
private
def no_duplication
if CarPrice.where(:car_id => self.car_id).where(:agent_id => self.agent_id).blank?
return true
else
return false
end
end
此代码停止重复,但不发送任何错误消息。我该如何解决?