繁体   English   中英

Rails simple_form - “显示”页面中的嵌套表单 NoMethodError

[英]Rails simple_form - Nested Form NoMethodError in "show" page

我在使用 simple_form 制作嵌套表单时遇到了一些困难,特别是在显示页面上。 我有一个 Profile 和 Experience 模型,并且想将 Experience 模型嵌套在 Profile 模型中。 我相信我已经正确设置了表单文件和控制器以及关联,并且表单似乎工作正常,除非当我尝试保存表单并转到显示页面时,我收到以下与相关字段有关的错误到我的体验模型:

配置文件中没有方法错误#show

显示 c:/Users/Rashed/Desktop/Ministry-Web-Application (new)/app/views/profiles/show.html.erb 其中第 17 行提出:

未定义的方法“公司”为 nil:NilClass

问题似乎与我在显示页面上呈现嵌套体验字段的代码有关,但是我似乎无法弄清楚如何解决这个问题,尽管寻找解决方案已经很长时间了。

这是我的项目的代码:

show.html.erb:

<div class="row">
    <div class="col-md-offset-1 col-md-8">
        <p id="notice"><%= notice %></p>


        <p><strong>Full Name:</strong>&nbsp;&nbsp;<%= @profile.name %></p>
        <p><strong>Civil ID no:</strong>&nbsp;&nbsp;<%= @profile.civil %></p>
        <p><strong>Date of Employment:</strong>&nbsp;&nbsp;<%= @profile.date_of_employment %></p>
        <p><strong>Mobile no:</strong>&nbsp;&nbsp;<%= @profile.mobile %></p>
        <p><strong>Work Email:</strong>&nbsp;&nbsp;<%= @profile.work_email %></p>
        <p><strong>Personal Email</strong>&nbsp;&nbsp;<%= @profile.personal_email %></p>
        <p><strong>Internal no:</strong>&nbsp;&nbsp;<%= @profile.internal_no %></p>
        <p><strong>Nationality:</strong>&nbsp;&nbsp;<%= @profile.nationality %></p>
        <p><strong>Gender:</strong>&nbsp;&nbsp;<%= @profile.gender %></p>
        <p><strong>Academic Degree:</strong>&nbsp;&nbsp;<%= @profile.academic_degree %></p>
        <p><strong>Major:</strong>&nbsp;&nbsp;<%= @profile.major %></p>

        <p><strong>Company / Workplace</strong>&nbsp;&nbsp;<%= @experience.company %></p>
        <p><strong>Company / Workplace</strong>&nbsp;&nbsp;<%= @experience.period_of_employment %></p>
    <p><strong>Company / Workplace</strong>&nbsp;&nbsp;<%= @experience.title %></p>


        <%= link_to 'Edit', edit_profile_path(@profile) %> |
        <%= link_to 'Back', profiles_path %>
    </div>
</div>

profile_controller.rb

class ProfilesController < ApplicationController
  before_action :set_profile, only: [:show, :edit, :update, :destroy]

  respond_to :html

  def index
    @profiles = Profile.all
    respond_with(@profiles)
  end

  def show
    respond_with(@profile)
  end

  def new
    @profile = Profile.new
    @profile.experiences.build
    respond_with(@profile)
  end

  def edit
  end

  def create
    @profile = Profile.new(profile_params)
    @profile.user_id = current_user.id
    @profile.save
    respond_with(@profile)
  end

  def update
    @profile.update(profile_params)
    respond_with(@profile)
  end

  def destroy
    @profile.destroy
    respond_with(@profile)
  end

  private
    def set_profile
      @profile = Profile.find(params[:id])
    end

    def profile_params
      params.require(:profile).permit(:name, :civil, :date_of_employment, :mobile, :work_email, :personal_email, :internal_no, :nationality, :gender, :academic_degree, :major, :work_experience, experiences_attributes: [:company, :period_of_employment, :title])
    end
end

_form.html.erb

<%= simple_form_for(@profile) do |f| %>
  <%= f.error_notification %>

  <div class="form-inputs">
    <%= f.input :name, label: 'Full Name:' %>
    <%= f.input :civil, label: 'Civil ID:' %>
    <%= f.input :gender, collection: ['Male', 'Female'], label: 'Gender:', as: :radio_buttons, :include_blank => false %>
    <%= f.input :date_of_employment, label: 'Date of Employement:', as: :date, start_year: Date.today.year - 50, end_year: Date.today.year, order: [:day, :month, :year], input_html: { class: 'inline-date' } %>
    <%= f.input :mobile, label: 'Mobile no:' %>
    <%= f.input :work_email, label: 'Work Email:' %>
    <%= f.input :personal_email, label: 'Personal Email:' %>
    <%= f.input :internal_no, label: 'Internal no:' %>
    <%= f.input :nationality, collection: ['Kuwaiti', 'Non-Kuwaiti'], label: 'Nationality:', as: :radio_buttons, :include_blank => false %>
    <%= f.input :academic_degree, collection: ["Pre-Bachelor's Degree", "Diploma", "Bachelor's Degree", "Master's Degree", "Ph.D"], label: 'Academic Degree', as: :select, :include_blank => 'Choose Your Degree...' %>
    <%= f.input :major, collection: ["Architecture", "Civil Engineering", "Mechanical Engineering", "Chemical Engineering", "Computer Engineering", "Interior Designer", "Electrical Engineering", "Civil Engineering / Structure", "Administration"], label: 'Major', as: :select, :include_blank => 'Choose Your Major...' %>
    <%= f.input :nationality, collection: ['Kuwaiti', 'Non-Kuwaiti'], label: 'Nationality:', as: :radio_buttons, :include_blank => false %>
    <%= f.input :work_experience, collection: ['No', 'Yes'], label: 'Previous Work Experience?', as: :radio_buttons, :include_blank => false %>

    <%= f.simple_fields_for :experiences, Experience.new do |builder| %>
        <%= buidler.input :company %>
    <%= buidler.input :period_of_employment, label: 'Period of Employement:', as: :date, start_year: Date.today.year - 50, end_year: Date.today.year, order: [:day, :month, :year], input_html: { class: 'inline-date' } %>
    <%= builder.input :title, label: 'Job Title' %>
      <% end %>


  </div>

  <div class="form-actions">
    <%= f.button :submit %>
  </div>
<% end %>

体验模式:

class Experience < ActiveRecord::Base

    belongs_to :profile 

end

型材型号:

class Profile < ActiveRecord::Base

    belongs_to :users
    has_many :experiences

    accepts_nested_attributes_for :experiences


end

提前致谢!

每个配置文件都有许多体验,因此当您执行 @profile.experiences 时,它返回一个集合而不是单个记录。 您需要迭代这些并像这样显示它们:

<% @profile.experiences.each do |experience| do %>
  <p><strong>Company / Workplace</strong>&nbsp;&nbsp;<%= experience.company %></p>
  <p><strong>Company / Workplace</strong>&nbsp;&nbsp;<%= experience.period_of_employment %></p>
  <p><strong>Company / Workplace</strong>&nbsp;&nbsp;<%= experience.title %></p>
<% end %>

你能试试这个吗

<div class="row">
  <div class="col-md-offset-1 col-md-8">
    <p id="notice"><%= notice %></p>
    <p><strong>Full Name:</strong>&nbsp;&nbsp;<%= @profile.name %></p>
    <p><strong>Civil ID no:</strong>&nbsp;&nbsp;<%= @profile.civil %></p>
    <p><strong>Date of Employment:</strong>&nbsp;&nbsp;<%= @profile.date_of_employment %></p>
    <p><strong>Mobile no:</strong>&nbsp;&nbsp;<%= @profile.mobile %></p>
    <p><strong>Work Email:</strong>&nbsp;&nbsp;<%= @profile.work_email %></p>
    <p><strong>Personal Email</strong>&nbsp;&nbsp;<%= @profile.personal_email %></p>
    <p><strong>Internal no:</strong>&nbsp;&nbsp;<%= @profile.internal_no %></p>
    <p><strong>Nationality:</strong>&nbsp;&nbsp;<%= @profile.nationality %></p>
    <p><strong>Gender:</strong>&nbsp;&nbsp;<%= @profile.gender %></p>
    <p><strong>Academic Degree:</strong>&nbsp;&nbsp;<%= @profile.academic_degree %></p>
    <p><strong>Major:</strong>&nbsp;&nbsp;<%= @profile.major %></p>
    <% @profile.experiences.each do |experience| %>
      <p><strong>Company / Workplace</strong>&nbsp;&nbsp;<%= experience.try(:company) %></p>
      <p><strong>Company / Workplace</strong>&nbsp;&nbsp;<%= experience.try(:period_of_employment) %></p>
      <p><strong>Company / Workplace</strong>&nbsp;&nbsp;<%= experience.try(:title) %></p>
    <% end %>
    <%= link_to 'Edit', edit_profile_path(@profile) %> |
    <%= link_to 'Back', profiles_path %>
</div>

希望能帮助到你!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM