在 Rails 中创建具有多个参考的模型
我有一个模型定义为
class A < ActiveRecord::Base
belongs_to :b
belongs_to :c
end
如何创建与 b 和 c 关联的 A 的新实例。我有 b 和 c 的 id。
I have a model defined as
class A < ActiveRecord::Base
belongs_to :b
belongs_to :c
end
How do I create a new instance of A associated with both b and c. I've got the ids for b and c.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样创建一个新实例:
You can create a new instance of a like this: