在另一个控制器的show中创建控制器的表单

时间:2013-07-18 09:46:18

标签: ruby-on-rails nested-forms nested-attributes

我目前正在使用Rails 4创建一个网站,我需要使用另一个模型“响应”在模型“post”中为模型“候选”创建一个表单。

这是帖子模型:

class Post < ActiveRecord::Base



validates :title, presence: true,
                  length: { minimum: 5 }

belongs_to :entrepreneur

belongs_to :categorie

has_many :candidatures

accepts_nested_attributes_for :candidatures

has_many :questions

accepts_nested_attributes_for :questions, 
        :reject_if => lambda { |a| a[:enonce].blank? }, 
        :allow_destroy => true

end

候选资格模型:

class Candidature < ActiveRecord::Base
has_many :reponses
accepts_nested_attributes_for :reponses, :allow_destroy => true
end

响应模型:

class Reponse < ActiveRecord::Base
belongs_to :candidature
end

我没有候选人和回应的控制者,因为我认为我不需要任何人(如果我错了,请纠正我)。 我创建了作为项目的帖子,在帖子的展示视图中,我需要创建一个表单,客人可以通过回答回答一些问题,所有这些答案都必须保存在一个候选人中。

schema.rb看起来像这样:

ActiveRecord::Schema.define(version: 20130718083016) do

 create_table "candidatures", force: true do |t|
 t.datetime "created_at"
 t.datetime "updated_at"
 t.integer  "post_id"
 end

 create_table "questions", force: true do |t|
 t.datetime "created_at"
 t.datetime "updated_at"
 t.integer  "post_id"
 t.text     "enonce"
 end

 create_table "reponses", force: true do |t|
 t.integer  "candidature_id"
 t.datetime "created_at"
 t.datetime "updated_at"
 t.text     "enonce"
 end

 create_table "posts", force: true do |t|
 t.string   "title"
 t.datetime "created_at"
 t.datetime "updated_at"
 t.text     "defi"
 t.text     "mission"
 t.text     "competences"
 t.text     "gain"
 t.text     "lieny"
 t.text     "liendb"
 t.string   "link"
 end

邮寄控制器:

class PostsController < ApplicationController
    layout :resolve_layout
    include Candidaturetopost

def new
    @post = Post.new
end

def create
    @post = Post.new(post_params)

    if @post.save
        flash[:notice] = "Successfully created project."
        redirect_to @post
    else 
        render 'new'
    end
end

def show
    @post = Post.find(params[:id])
    @post.candidatures.build

end

def index
    @posts = Post.all
end

def edit
    @post = Post.find(params[:id])
end


def update
    @post = Post.find(params[:id])
    if @post.update(post_params)
        redirect_to @post
    else
        render 'edit'
    end
end





def destroy
    @post = Post.find(params[:id])
    @post.destroy

    redirect_to posts_path
end


private 

def post_params
    params.require(:post).permit(:title, :image, :defi, :mission, :competences, :gain, :lieny, :liendb, :link, questions_attributes: [:enonce, :post_id, :id, :_destroy], 
                                 candidatures_attributes: [:post_id, :id, reponses_attributes: [:candidature_id, :id, :enonce]])
end

我试图开始工作的节目视图:

<%= form_for @post do |f| %>
<%= f.fields_for :candidatures do |cform| %>

<ol>
<% for question in @post.questions %>
<li><%= question.enonce %></li>
<%= cform.fields_for :reponses do |rform| %>
   <%= rform.text_area :enonce %>
    <% end %>

 <% end %>
 </ol>
 <%= cform.submit %>

 <% end %>

 <% end %>

使用此处显示的代码,甚至不显示enonce的text_area。

我想做甚么可能吗?如果没有,我怎么能有类似的东西?

2 个答案:

答案 0 :(得分:0)

试试这个

@post.candidatures.build
@post.candidatures.each {|candidature| candidature.responses.build }

但正如我在评论中写道,你过于复杂的模型结构,我相信你应该重新考虑它。

答案 1 :(得分:0)

你是对的,这太复杂了。 我使用this来帮助我实现它,我现在拥有了我想要的三个模型之间的链接。