在我的数据库中,有很多用户拥有无效数据(没有手机号码)。因为我刚刚添加了移动存在验证。当我尝试添加新事件时,我收到错误消息“用户移动电话号码必须是...格式”。如何在创建事件时跳过用户验证?
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 %>
答案 0 :(得分:7)
在事件validate: false
关联
has_many :users
class Event < ActiveRecord::Base
has_many :participations
has_many :users, :through => :participations, validate: false
end