2016-06-16 7 views
0

_form.html.erbで作成した部分の日付を保存できません。部分ファイル名は_education.html.erbです。これは現在、_form.html.erbには<%= render partial:'clients/education' %>として記載されています。私は何が欠けているのか把握できません。私は部分変数をローカル変数として設定しているかもしれないと思っていますが、わかりません。部分を削除すると、フォームはうまく動作します。ここで部分的にレンダリングする部分のレンダリング

_education.html.erb

<%=form_for(@client, html: {class: "pure-form pure-form-stacked", multipart:true}) do |f| %> 
<!-- START CUSTOM TABS --> 
      <div class="row"> 
      <div class="col-md-12"> 
       <!-- Custom Tabs --> 
       <div class="nav-tabs-custom"> 
       <ul class="nav nav-tabs pull-left"> 
        <li class="active"><a href="#tab_1-1" data-toggle="tab">School</a></li> 
        <li><a href="#tab_2-2" data-toggle="tab">Employment</a></li> 
        <li><a href="#tab_3-2" data-toggle="tab">Tab 3</a></li> 
        </li> 
       </ul> 
       <div class="tab-content"> 
        <div class="tab-pane active" id="tab_1-1"> 
        <b><%= f.label :ed_id, "School" %></b> 
            <%= f.collection_select :ed_id, Ed.all, :id, :school, {prompt: "Choose School"}, class: "btn btn-info", class: "pure-input-4-24" %> 
        </div><!-- /.tab-pane --> 
        <div class="tab-pane" id="tab_2-2"> 
        <div class="tab-content"> 
         <div class="tab-pane active" id="tab_1-"> 
        <b><%= f.label :employment_id, "Employment" %></b> 
            <%= f.collection_select :employment_id, Employment.all, :id, :name, {prompt: "Choose Status"}, class: "btn btn-info", class: "pure-input-4-24" %> 
        </div> 
        </div> 
        </div><!-- /.tab-pane --> 
        <div class="tab-pane" id="tab_3-2"> 
        ... 
        </div><!-- /.tab-pane --> 
       </div><!-- /.tab-content --> 
       </div><!-- nav-tabs-custom --> 
      </div><!-- /.col --> 

      <div class="col-md-6"> 
       <!-- Custom Tabs (Pulled to the right) --> 

      </div><!-- /.col --> 
      <% end %> 
      </div> <!-- /.row --> 
      <!-- END CUSTOM TABS --> 

は、クライアントフォームためのコントローラです。私はそれが

class ClientsController < ApplicationController 
    before_action :authenticate_user! 
    before_action :set_client, only: [:show, :edit, :update, :destroy] 


    # GET /clients 
    # GET /clients.json 
    def index 
    @clients = Client.all.uniq.order("created_at DESC") 
    @clients_count = Client.uniq.count 
    end 

    # GET /clients/1 
    # GET /clients/1.json 
    def show 
    @notes = Note.where(client_id: @client.id) #Where a note belong to the current account 
    end 

    # GET /clients/new 
    def new 
    @client = Client.new 
    end 

    # GET /clients/1/edit 
    def edit 
    end 

    # POST /clients 
    # POST /clients.json 
    def create 
    @client = Client.new(client_params) 

    respond_to do |format| 
     if @client.save 
     format.html { redirect_to @client, notice: 'Client was successfully created.' } 
     format.json { render :show, status: :created, location: @client } 
     else 
     format.html { render :new } 
     format.json { render json: @client.errors, status: :unprocessable_entity } 
     end 
    end 
    end 

    # PATCH/PUT /clients/1 
    # PATCH/PUT /clients/1.json 
    def update 
    #if params[:remove_image] 
    #@client.remove_image! 
    @client.save 
    #end 
    respond_to do |format| 
     if @client.update(client_params) 
     format.html { redirect_to @client, notice: 'Client was successfully updated.' } 
     format.json { render :show, status: :ok, location: @client } 
     else 
     format.html { render :edit } 
     format.json { render json: @client.errors, status: :unprocessable_entity } 
     end 
    end 
    end 
    # DELETE /clients/1 
    # DELETE /clients/1.json 
    def destroy 
    @client.destroy 
    respond_to do |format| 
     format.html { redirect_to clients_url, notice: 'Client was successfully destroyed.' } 
     format.json { head :no_content } 
    end 
    end 

    private 
    # Use callbacks to share common setup or constraints between actions. 
    def set_client 
     @client = Client.find(params[:id]) 
    end 

    # Never trust parameters from the scary internet, only allow the white list through. 
    def client_params 
     params.require(:client).permit(:firstName, :lastName, :dob, :gender_id, :remove_image, :insurance_id, :state_id, :ed_id, :rsource_id, :image, :race_id, :employment_id, :comments, :email, :phone, :address, :city, :state, :zipcode) 
    end 
end 

はここ形式の短いバージョンですed.rbでclient.rbとhas_manyの中にbelongs_toのを持っているので、私はのparamsにed_idを追加したことを確認しました。あなたが部分的_educationに地元の人々を渡す必要が

<%=form_for(@client, html: {class: "pure-form pure-form-stacked", multipart:true}) do |f| %> 
    <% if @client.errors.any? %> 
    <div id="error_explanation"> 
     <h2><%= pluralize(@client.errors.count, "error") %> prohibited this client from being saved:</h2> 

     <ul> 
     <% @client.errors.full_messages.each do |message| %> 
     <li><%= message %></li> 
     <% end %> 
     </ul> 
    </div> 
    <% end %> 
      <!-- beginning of rails code --> 
      <form class="pure-form pure-form-stacked"> 
       <fieldset> 
        <!-- <legend>Client Information</legend> --> 
        <div> 
        <h2 class="account">Client Information</h2> 
        </div> 
        <div class="pure-g"> 
         <div class="pure-u-1 pure-u-md-1-3"> 
          <%= image_tag @client.image_url, class: "image-client" if @client.image? %> 
          <%= f.label :image, "Client Image" %> 
          <%= f.file_field :image %> 
          <%= f.check_box :remove_image, id: "my-checkbox", :data => { :size=>'mini', 'on-color'=>'success', 'on-text'=>'Done', 'off-text'=>'Yes' } %> Remove Image? 
         </div> 

         <div class="pure-u-1 pure-u-md-1-3 firstname"> 
          <%= f.label:firstName, "First Name" %> 
          <%= f.text_field :firstName, class:"pure-u-2-5", type:"text", placeholder: "First Name", required: true %> 

          <%= f.label :lastName, "Last Name" %> 
          <%= f.text_field :lastName, class:"pure-u-2-5", type:"text", placeholder: "Last Name" %> 
          </div> 
        </div> 
        <!-- Employment Information --> 
        <h2 class="employment">Employment Status</h2> 
        <div class="pure-g"> 
         <div class="pure-u-1 pure-u-md-1-3"> 
          <%= render partial:'clients/education' %> 
         </div> 
         <!-- End of Employment Information --> 
         </div> 
        <!-- Client Note --> 
        ... 
        <!-- End of Client Note --> 
       </fieldset> 
       <div class="actions"> 
       <%=f .submit class: "btn btn-primary" %> <%= link_to 'Cancel', clients_path, class: "btn btn-danger" %> 
      </div> 
     <% end %> 
     </form> 

答えて

2

<%= render partial:'clients/education', locals: {f: f} %> 

そして部分的にあなたの_educationに、あなたは別のform_forの宣言は必要ありません。 <%= f.collection_select...などでお待ちください。

希望のある方はこちらをご覧ください。 :-)

+0

ありがとうございました。私の問題を修正しました。 –

関連する問題