gpt4 book ai didi

ruby-on-rails - Rails 放置 Activemodel::validators 的位置

转载 作者:行者123 更新时间:2023-12-04 06:08:56 30 4
gpt4 key购买 nike

这是一个两部分的问题。

如果我正在为其编写验证的模型继承自 ActiveRecord::Base 第一部分,我需要在该类中 include ActiveModel::Validations 吗? API对于 rails 没有说,但在这里 yehudakatz博客似乎暗示了这一点?

第二部分是放置这些验证器文件的最佳位置?在助手下或作为新模型或在库中?

我当前的验证器看起来像这样

class GenderValidator < ActiveModel::validator
def validate(record)
cred = /(\d{6})(\d{4})(\d{1})(\d{2})/.match(record.id_number.to_s) #breaks up the id into the relevent sections namely birthdate, gender, nationality, validator.
unless cred[0][/\d{13}/] #checks to see if the id is a valid length of numbers if it isnt then skip the validation of gender
return true
else
birthdate = cred[1] #returns a 6 digit string 'yymmdd'
parsed_gender = cred[2] #returns a 4 digit string '0001-4999:female 5000-9999:male'
nationality = cred[3] # should return either a 1 or a 0 1 if the person is foreign or 0 if the person is southafrican

validate_gender(parsed_gender, record)
end
end

private
def validate_gender(parsed_gender, record)
calculate_gender = (parsed_gender <= 4999 ? :female : :male)
unless employee.gender == calculate_gender
employee.errors[:gender] << "Your id indicates you have entered the wrong gender"
end
end
end

每个人的有效身份证号是可选的,但如果他们确实指定了它,它应该检查性别是否正确。

如果我将它保存在与员工模型相同的模型中,那么我会收到此错误

ActionController::RoutingError (uninitialized constant Employee::GenderValidator):
app/models/employee.rb:25:in `<class:Employee>'
app/models/employee.rb:1:in `<top (required)>'
lib/role_requirement_system.rb:19:in `inherited'
app/controllers/employees_controller.rb:1:in `<top (required)>'
librato-rails (0.8.1) lib/librato/rack/middleware.rb:12:in `call'

所以我认为它们不能在同一个文件中。验证的最佳实践是什么?我看了所有的 Rails 类型转换,也读过一些博客,但我还是个新手。

编辑

在我的模型中,我包含此类

include ActiveModel::Validations

我的验证看起来像这样

validates_presence_of :name, :position, :gender
validate :instance_validations, :on => :create

def instance_validations
validates_with GenderValidator
end

只是以防你也想看提前谢谢!

最佳答案

您不需要包含 ActiveModel::Validations

我倾向于将验证对象保留在模型文件夹中。

所以对于模型 Gender 你有一个文件gender.rb

对于验证器 GenderValidator,您有文件gender_validator.rb

所以两个文件一起放在模型文件夹中。

这是我的时事通讯模型的验证器

class NewsletterValidator < ActiveModel::Validator
def validate(record)
if record.send_test_email
if test_email_address.blank?
record.errors[:test_email_address] << "Test email address is blank"
end
if record.send_email_to_subscribers
record.errors[:send_test_email] << "You cannot send a test and send to subscribers at the same time"
end
end

end
end

在我的时事通讯模型中,我只有

  validates_with NewsletterValidator

您的示例中有拼写错误

你有

class GenderValidator < ActiveModel::validator

应该是

class GenderValidator < ActiveModel::Validator

注意大写V

关于ruby-on-rails - Rails 放置 Activemodel::validators 的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15001351/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com