2

我通过关联遇到了一些与 has_many 相关的重大问题,并且确实可以通过一些帮助来解决。

Ruby On Rails 指南示例的上下文中,我将如何编写一个表格,为给定的医生列出所有患者,特别是他们的预约时间,然后可以对其进行编辑。我希望能够以相同的形式编辑患者姓名和他们的预约日期......这基本上是我遇到的问题的症结所在;以相同的形式编辑两个模型并使其在两者上都保持值。

如果有人可以提供一些指示或工作示例,将不胜感激。

4

1 回答 1

0

You are describing a problem involving a nested model form(has_many). Try this railscast for info about doing this in rails: http://railscasts.com/episodes/196-nested-model-form-part-1 Of particular interest to you should be the accepts_nested_attributes_for method.

于 2012-08-07T15:57:05.123 回答