gpt4 book ai didi

ruby-on-rails - Ruby 中的动态验证和元编程

转载 作者:数据小太阳 更新时间:2023-10-29 07:57:38 25 4
gpt4 key购买 nike

我正在尝试开发一个应用程序,该应用程序可以向不同的用户呈现相同的资源,并且该资源可能具有基于用户的不同验证行为。

我曾尝试使用 Ruby 元编程以一种简单的方式解决这个问题,但看起来我遗漏了一些关键知识。

我可以用一个模型来举例说明,例如

class Profile < ActiveRecord::Base
# validates_presence_of :string1
end

该模型有一个属性“string1”,有时需要,有时不需要。我想为每个用户创建子类(出于这种简化中不明显的原因)并创建了一个我想包括的模块:

module ExtendProfile
def self.included(base)
base.extend(ClassMethods)
end

module ClassMethods
def configure_validation(required)
if required
class_eval("ActiveRecord::Base.validates_presence_of :string1")
end
end
end
end

它的唯一目的是添加一个方法,根据给定的参数添加条件验证。

当使用一个为真的参数调用时,它确实添加了验证,但它并没有干净地完成。看起来它并没有像我想象的那样分 ionic 类。

可以通过以下测试来说明:

profile = Profile.new
profile.save; profile.errors
=> []

默认情况下可以无误地保存配置文件。

Object::const_set('FirstExtendedProfile'.intern, Class::new(Profile) { include ExtendProfile })
FirstExtendedProfile.configure_validation(true)
fep = FirstExtendedProfile.new; fep.save; fep.errors
=> {:string1=>["skal udfyldes", "skal udfyldes"]}

创建一个新的子类并调用 configuring_validation 添加验证,但出于某种原因,它在验证期间被调用了两次(“skal udfyldes”- 是丹麦语,意味着它是必需的)。

Object::const_set('SecondExtendedProfile'.intern, Class::new(Profile) { include ExtendProfile })
sep = SecondExtendedProfile.new; sep.save; sep.errors
=> {:string1=>["skal udfyldes"]}

创建了另一个后代,即使未调用 configure_validation,它仍会验证 string1 属性(但现在只验证一次)。

添加另一个后代并调用 configure_validation 再次添加验证...

为什么我无法将验证添加到特定的配置文件后代?

我正在使用 Ruby 1.9.2 和 Rails 3.06。请理解我想了解如何使这个动态类创建工作 - 我知道“标准”自定义验证。

最佳答案

出于在使用单表继承时变得清晰的原因,验证存储在“根”类中的变量中,即直接继承 ActiveRecord::Base 的类。幕后有大量工作可确保您尝试做的事情不起作用。

我的建议是在每个类中存储一些配置数据,然后编写一个动态验证来检查配置并根据在那里找到的内容进行验证。然而,这可能就是您所说的“我知道‘标准’自定义验证”的意思。

 with_options :if => lambda { |obj| obj.class.validation_configuration[:string1]} do |t|
t.validates_presence_of :string1
end

关于ruby-on-rails - Ruby 中的动态验证和元编程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5614740/

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