创建has_many:通过记录时跳过验证

时间:2014-02-20 01:20:44

标签: ruby-on-rails ruby-on-rails-3 validation nested-forms

在我的数据库中,有很多用户拥有无效数据(没有手机号码)。因为我刚刚添加了移动存在验证。当我尝试添加新事件时,我收到错误消息“用户移动电话号码必须是...格式”。如何在创建事件时跳过用户验证?

event.rb

class Event < ActiveRecord::Base
  has_many :participations
  has_many :users, :through => :participations
end

user.rb

class User < ActiveRecord::Base
  has_many :participations
  has_many :events, :through => :participations
end

events_controller.rb

 def create
    @event = Event.new(event_params)

    respond_to do |format|
      if @event.save
        format.html { redirect_to events_path, notice: 'Event was successfully created.' }
      else
        format.html { render action: 'new' }
      end
    end
  end

_form.html.erb

 <%= form_for @event, :html => {:class => 'row'} do |f| %>
      <%= f.error_messages %>

      <%= f.label :name %>
      <%= f.text_field :name %>

      <%= f.label :user_ids, "Participants" %>
      <%= f.collection_select :user_ids, User.all, :id, :name, {}, { :multiple => true } %>

      <%= clear %>

      <%= f.submit 'Save' %>
    <% end %>

1 个答案:

答案 0 :(得分:7)

在事件validate: false关联

中设置has_many :users
class Event < ActiveRecord::Base
  has_many :participations
  has_many :users, :through => :participations, validate: false
end
相关问题