私は初心者です。今日はfields_forに問題があります。誰も私を助けることができると思う。 私はモデル事業があります。それはすべてのレンダリングfields_forをカスタマイズするには
<%= form_for(@project, do |f| %>
<%= f.fields_for :tasks do |tasks_for_form|%>
<%= render 'task_fields', f: tasks_for_form%>
<%end%>
... :
class Project < ActiveRecord::Base
validates :project_name, presence: true,uniqueness: true
validates :plan_time, presence: true
has_many :tasks, dependent: :destroy
accepts_nested_attributes_for :tasks, allow_destroy: true
end
とモデルのタスク:
class Task < ActiveRecord::Base
belongs_to :user
belongs_to :project
validates :user_id, presence: true
validates :project_id, presence:true
end
を私はのform_forのプロジェクトを作ったときdb内のプロジェクトの既存タスク。 PLZ助けて!
Project Controllerとtask_field partialをうまく投稿してください。 –