如何计算模型中的零值?

发布于 2025-01-08 22:26:17 字数 243 浏览 0 评论 0原文

假设我有一个名为“Person”的模型&该人由姓名、年龄、性别和性别来定义。种族。

如何迭代模型以找出哪些值为零?

例如:

姓名:彼得

年龄:34

性别:nil

种族:nil

--Nil count: 2--

我知道我会迭代每个字段,如果值 if nil & 则执行 +1输出总价值。

感谢您的任何帮助或指导!

Assuming I have a model named "Person" & that person is defined by name, age, gender & race.

How do I iterate through the model to find out which values are nil?

For example:

name: peter

age: 34

gender: nil

race: nil

--Nil count: 2--

I understand I would have iterate through each field, do a +1 if value if nil & output the total value.

Thanks for any help or guidance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

真心难拥有 2025-01-15 22:26:17

如果您的实例是 p 那么:

nils = p.attributes.values.select(&:nil?).count

将为您提供 nil 属性的数量。

If your instance is p then:

nils = p.attributes.values.select(&:nil?).count

will give you the number of nil attributes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文