一些验证通过后的自定义方法
好的。
1)我需要验证模型中的 :link
,并且仅当它不为空(或 nil)时才执行此操作。
2) 如果 :link
不为空且标准验证通过 — 我需要运行自定义验证方法来检查 URL 可用性。
通过“标准”验证,我的意思是这样的:
validates :link, :presence => true, :uniqueness => true,
:format => { :with => /^(http|https):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$/ix }
实现这个的正确方法是什么?
Ok.
1) I need to validate :link
in my model and do that only if it is not blank (or nil).
2) If :link
is not blank and standard validation passes — I need to run my custom validation method to check URL availability.
By "standard" validation I mean something like this:
validates :link, :presence => true, :uniqueness => true,
:format => { :with => /^(http|https):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$/ix }
What is the correct way to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
仅当链接不为空时,它才会检查模型中的验证:
It checks for validation in your model only if link isn't blank:
好的。在朋友的帮助下我终于解决了这个问题。
Ok. With friends help I finally solved this.