假设您的帖子模型包含:title
,:author
,:content
等。它还具有:thread_id
属性,并且belongs_to :thread
线程模型没有任何自定义字段。您唯一需要的是默认情况下创建的内容,例如:id
,:created_at
和:updated_at
。主题have_many :posts
。
如何为同时创建线程和帖子的线程创建表单?
相关问题,可能:
<% form_for @new_thread ... %>
还是<% form_for @new_post ... %>
?感谢您的帮助,我是Rails的新手,我还在学习如何组织我的代码。
答案 0 :(得分:2)