在RoR中,如果我说A has_one B,那么A是否必须有一个B?
我需要建立一种关系,使 A 有一个 B,但会有一些条目 A 没有 B。这可能吗?如果不是,这该怎么办?
感谢您的阅读。
I need to setup a relationship so that A has one B, but there will be some entries where A doesn't have a B. Is this possible? If not, how can this be done?
Thanks for reading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。默认情况下,A 不必有 B,除非您添加代码来强制执行它。
Yes, it is possible. By default A doesn't have to have a B unless you add code to enforce it.
您可以通过在 A 类中添加
validates_presence_of :b
来检查是否存在 BYou can check that there is a B by adding
validates_presence_of :b
in class A