1

我是 Rails 的新手,所以我有一个新手问题。

我们有一个表单可以让管理员设置一个新用户,如下所示:

<%= form_for :user, :url => url_for(:action => 'create_user', :account_id => @account.id, :hide_form => 1), :html => {:name => 'new_user_form', :id => 'new_user_form', :remote => true} do |f| %>
  First Name:
  <% f.text_field 'first_name' %><br/>
  Last Name:
  <%= f.text_field 'last_name' %><br/>
  Username:
  <%= f.text_field 'login' %><br/>
  Email:
  <%= f.text_field 'email' %><br/>
  Agency Code:
  <%= text_field_tag 'agency_code', @default_agency_code %><br/>

  <div class="button-bar">
    <%= f.submit :id => "submit_button" %>
  </div>
<% end %>

到目前为止,一切都很好。提交表单时调用的操作将所有表单值推入一个User对象并将其保存到数据库中:

def remote_create_user
  @user = User.new(params[:user])
  @user.agency = Agency.find{|agency| agency.product_code == params[:agency_code]}
  if @user.valid? and @user.save
    # Move some stuff around for the new user
  else
    @error = "Failure to Save:"
    @user.errors.full_messages.each {|msg| @error += " - #{msg}"}
  end
end

我的理解是,视图中开始的行让 ERB 视图知道使用模型中指定的验证逻辑来​​验证与类<%= form_for :user直接对应的所有表单字段。UserUser

但是,表单 ( Agency Code: <%= text_field_tag 'agency_code', @default_agency_code %><br/>) 中的最后一个字段与模型中的属性不对应User。相反,它对应于Agency.product_codeAgency模型为此属性定义了验证。我如何告诉 Rails 使用Agency模型中的验证逻辑来​​处理这个字段?如果无法直接执行此操作,如何将验证直接添加到代理代码文本字段?

4

1 回答 1

1

你可以简单地使用

@user.agency = Agency.find_by_id{|agency| agency.product_code == params[:agency_code]}

在您的用户模型中,

validates :agency_id, :presence => true

在这种find_by_id情况下,它将比仅仅find因为nil如果找不到模型就返回它会更好。

于 2013-06-03T17:43:57.407 回答