gpt4 book ai didi

ruby-on-rails - 如何验证 Mongoid 中的数组不为空?

转载 作者:太空宇宙 更新时间:2023-11-03 18:13:06 24 4
gpt4 key购买 nike

class Foo
include Mongoid::Document

field :bars, type:Array
end

如何验证 bars 数组不为空?

最佳答案

试试标准presence验证器:

class Foo
include Mongoid::Document

field :bars, type: Array

  validates :bars, presence: true
end

这是有效的,因为 presence 验证器使用 blank? 方法在验证期间检查属性。

关于ruby-on-rails - 如何验证 Mongoid 中的数组不为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30472587/

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