我在使用simple_form制作嵌套表单时遇到了一些困难,特别是在显示页面上。我有一个Profile and Experience模型,并希望将Experience模型嵌套在Profile模型中。我相信我已经正确设置了表单文件和控制器和关联,并且表单似乎工作正常,除非我尝试保存表单并转到显示页面,我收到关于相关领域的以下错误到我的经验模型:
配置文件中的NoMethodError#show
显示c:/ Users / Rashed / Desktop / Ministry-Web-Application (新)/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> <%= @profile.name %></p>
<p><strong>Civil ID no:</strong> <%= @profile.civil %></p>
<p><strong>Date of Employment:</strong> <%= @profile.date_of_employment %></p>
<p><strong>Mobile no:</strong> <%= @profile.mobile %></p>
<p><strong>Work Email:</strong> <%= @profile.work_email %></p>
<p><strong>Personal Email</strong> <%= @profile.personal_email %></p>
<p><strong>Internal no:</strong> <%= @profile.internal_no %></p>
<p><strong>Nationality:</strong> <%= @profile.nationality %></p>
<p><strong>Gender:</strong> <%= @profile.gender %></p>
<p><strong>Academic Degree:</strong> <%= @profile.academic_degree %></p>
<p><strong>Major:</strong> <%= @profile.major %></p>
<p><strong>Company / Workplace</strong> <%= @experience.company %></p>
<p><strong>Company / Workplace</strong> <%= @experience.period_of_employment %></p>
<p><strong>Company / Workplace</strong> <%= @experience.title %></p>
<%= link_to 'Edit', edit_profile_path(@profile) %> |
<%= link_to 'Back', profiles_path %>
</div>
</div>
profiles_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
提前致谢!
答案 0 :(得分:1)
每个配置文件都有很多经验,因此当您执行@ profile.experiences时,它会返回一个集合而不是单个记录。 您需要迭代这些并显示它们像这样:
<% @profile.experiences.each do |experience| do %>
<p><strong>Company / Workplace</strong> <%= experience.company %></p>
<p><strong>Company / Workplace</strong> <%= experience.period_of_employment %></p>
<p><strong>Company / Workplace</strong> <%= experience.title %></p>
<% end %>
答案 1 :(得分:1)
你能试试吗
<div class="row">
<div class="col-md-offset-1 col-md-8">
<p id="notice"><%= notice %></p>
<p><strong>Full Name:</strong> <%= @profile.name %></p>
<p><strong>Civil ID no:</strong> <%= @profile.civil %></p>
<p><strong>Date of Employment:</strong> <%= @profile.date_of_employment %></p>
<p><strong>Mobile no:</strong> <%= @profile.mobile %></p>
<p><strong>Work Email:</strong> <%= @profile.work_email %></p>
<p><strong>Personal Email</strong> <%= @profile.personal_email %></p>
<p><strong>Internal no:</strong> <%= @profile.internal_no %></p>
<p><strong>Nationality:</strong> <%= @profile.nationality %></p>
<p><strong>Gender:</strong> <%= @profile.gender %></p>
<p><strong>Academic Degree:</strong> <%= @profile.academic_degree %></p>
<p><strong>Major:</strong> <%= @profile.major %></p>
<% @profile.experiences.each do |experience| %>
<p><strong>Company / Workplace</strong> <%= experience.try(:company) %></p>
<p><strong>Company / Workplace</strong> <%= experience.try(:period_of_employment) %></p>
<p><strong>Company / Workplace</strong> <%= experience.try(:title) %></p>
<% end %>
<%= link_to 'Edit', edit_profile_path(@profile) %> |
<%= link_to 'Back', profiles_path %>
</div>
希望它有所帮助!