1

client_side_validationsページからコードをコピーしました。そして 、エラーが発生しました。モデルundefined method validates_email for #<Class:0x007ff3382428a8> を挿入includes ::Validationsすると、このエラーは消えますが、検証がまったく機能しません。

app / validators / email_validator.rb

class EmailValidator < ActiveModel::EachValidator
  def validate_each(record, attr_name, value)
    unless value =~ /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
    record.errors.add(attr_name, :email, options.merge(:value => value))
    end
  end
end

# This allows us to assign the validator in the model
module ActiveModel::Validations::HelperMethods
  def validates_email(*attr_names)
    validates_with EmailValidator, _merge_attributes(attr_names)
  end
end

config / locales / en.yml

# config/locales/en.yml
en:
  errors:
    messages:
      email: "Not an email address"

app / Assets / javascripts / rails.validations.customValidators.js

// The validator variable is a JSON Object
// The selector variable is a jQuery Object
window.ClientSideValidations.validators.local['email'] = function(element, options) {
// Your validator code goes in here
if (!/^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i.test(element.val())) {
// When the value fails to pass validation you need to return the error message.
// It can be derived from validator.message
return options.message;
}
}

models / comment.rb

class Comment < ActiveRecord::Base
  attr_accessible :content, :email, :ip, :name, :post_id
  belongs_to :post
  validates_presence_of :content, :email, :post_id, :name
  validates_email :email
end
4

1 に答える 1

0

あなたのモジュールが含まれているとは思いません。また、モジュールを配置する場所によっては、「require」する必要がある場合があります。また、試してください:

include <Module name>

それ以外の

includes <Module name>

これが役立つことを願っています

于 2013-01-25T07:49:18.983 に答える