3

我有一个模型用户

class User < ActiveRecord::Base
  validates :goal, :presence => true, :on => :update
  belongs_to :goal, :class_name => Goal, :foreign_key => "goal_id"
  ...
end

在我的表格上

<%= simple_form_for @users,:remote => true, :url => registration_path(resource_name), :html => { :method => :put, :multipart => true }, :validate => true do |f| %>
 <%= f.association :goal,:label => "My overall goal is clearing", :input_html => {:class => 'goals'},:include_blank => true %>

但是 Rails 客户端验证并没有接受关联验证,它让我可以为目标填写空白。

Rails 客户端验证 gem 是否适用于简单的表单关联?

我在我的 html 页面上得到以下脚本

if (window.ClientSideValidations == undefined) window.ClientSideValidations = {};
if (window.ClientSideValidations.forms == undefined) window.ClientSideValidations.forms = {};
window.ClientSideValidations.forms['edit_user_14'] = {
    "type": "SimpleForm::FormBuilder",
    "error_class": "error",
    "error_tag": "span",
    "wrapper_error_class": "field_with_errors",
    "wrapper_tag": "div",
    "wrapper_class": "input",
    "wrapper": "default",
    "validators": {
        "user[mobile_number]": {
            "format": [{
                "message": "should be 10 digits",
                "with": /^\d{10}$/i
            }]
        },
        "user[profile_pic]": {
            "integrity": [{
                "message": "translation missing: en.activerecord.errors.models.user.attributes.profile_pic.integrity"
            }],
            "processing": [{
                "message": "translation missing: en.activerecord.errors.models.user.attributes.profile_pic.processing"
            }],
            "download": [{
                "message": "translation missing: en.activerecord.errors.models.user.attributes.profile_pic.download"
            }],
            "format": [{
                "message": "Wrong file format",
                "with": /\.(gif|jpeg|jpg|png)$/i,
                "allow_blank": true
            }]
        }
    }
};
4

2 回答 2

1

这里的关键区别是使用validates :goal_id ...notvalidates :goal ...

由于这是一个关联,因此您的 ActiveRecord 模型(以及基础数据存储中)的真实属性是goal_id. 这就是client_side_validations默认情况下要查找的内容。

于 2014-08-12T22:22:33.747 回答
0

看起来ClientSideLavodationgem 找不到适当的关联验证,所以只需添加

validates :goal_id, :presence => true, :on => :update

到你的模型。

于 2012-12-30T15:27:02.323 回答