如何计算模型中的零值?
假设我有一个名为“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的实例是
p
那么:将为您提供
nil
属性的数量。If your instance is
p
then:will give you the number of
nil
attributes.