简介:我正在尝试在自定义ActiveModel :: EachValidator验证器中更改属性的值.鉴于以下原型:
def validate_each(记录,属性,值)
试图设置value = thing似乎没有做任何事情 – 我错过了什么吗?应该有一个聪明的方法来做到这一点……
细节:我接受URL输入作为网站的一部分.我不想只是获取URL并直接验证它返回200 OK消息,因为这将忽略不以http开头的条目,或遗漏领先的www等.我有一些自定义逻辑来处理有这些错误并遵循重定向.因此,如果用户输入example.org/article而不是http://www.example.org/article,我希望验证成功.逻辑在验证中正常工作,但问题是如果有人在前者中键入,则数据库中的存储值是“错误”形式而不是更新好的形式.我可以在验证过程中将条目更改为更规范的表单吗?
解决方法@H_403_10@
你应该让验证做到这一点:验证;它不适合操纵模型的属性.
请参阅ActiveModel的before_validation回调.这是一个更适合操作模型属性以准备验证的地方.
看起来你必须告诉你的ActiveModel实现有关回调,至少根据this SO question.
class YourModel
extend ActiveModel::Callbacks
include ActiveModel::Validations
include ActiveModel::Validations::Callbacks
before_validation :manipulate_attributes
def manipulate_attributes
# Your manipulation here.
end
end
请参阅ActiveModel的before_validation回调.这是一个更适合操作模型属性以准备验证的地方.
看起来你必须告诉你的ActiveModel实现有关回调,至少根据this SO question.
class YourModel extend ActiveModel::Callbacks include ActiveModel::Validations include ActiveModel::Validations::Callbacks before_validation :manipulate_attributes def manipulate_attributes # Your manipulation here. end end