我正在尝试使用单表继承来表示员工可以是经理或顾问。 所以这是我的员工模型:
class Employee < ActiveRecord::Base
belongs_to :communaute
self.inheritance_column = :fonction
scope :manager, -> { where(fonction: 'Manager') }
scope :consultant, -> { where(fonction: 'Consultant') }
end
这是我的子类:
class Consultant < Employee
end
class Manager < Employee
end
当我正在选择新视图来创建员工时。当我试图在员工上列出类型时,我有未定义的方法`fonction'错误。 我不明白为什么因为我在员工控制器中定义了它。 请你帮我解决这个错误。
在我的新表格下面
<%= form_for(@employee) do |f| %>
<% if @employee.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@employee.errors.count, "error") %> prohibited this employee from being saved:</h2>
<ul>
<% @employee.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :name %><br>
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :fonction %><br>
<%= f.select :fonction, Employee.fonction.map {|r| [r.humanize, r.camelcase]}, {}, disabled: @fonction != "Employee" %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
我的员工控制员
class EmployeesController < ApplicationController
before_action :set_employee, only: [:show, :edit, :update, :destroy]
before_action :set_fonction
def index
@employees = Employee.all
#@employees = fonction_class.all
end
def show
end
def new
#@employee = fonction_class.new
@employee = Employee.new
end
def edit
end
def create
@employee = Employee.new(employee_params)
if @employee.save
redirect_to @employee, notice: "#{fonction} was successfully created."
else
render action: 'new'
end
end
def update
end
def destroy
end
private
def fonction
params[:type] || "Employee"
end
def set_fonction
@fonction = fonction
end
# def fonction_class
# fonction.constantize
#end
def set_animal
@employee = fonction_class.find(params[:id])
end
def employee_params
params.require(fonction.downcase.to_sym).permit(:name, :fonction)
end
end
答案 0 :(得分:0)
您需要在模型中定义fonction
(app/models/employee.rb
)
您使用它的方式意味着它被定义为类方法和实例方法。看起来它也可能是一个阵列? Employee.fonction.map {|r| ...
或属性(因为您有选择在员工上设置它。)
但是,您将fonction定义为字符串...
def fonction
params[:type] || "Employee"
end
所以我不确定你在这里想要实现的目标......我所知道的是Employee.fonction
看起来像一个模型类方法......
def self.fonction
...
end
和f.select :fonction
看起来像是一个实例方法或属性?
编辑我想我已经有了这个......(抱歉,我在模型定义中错过了fonction
引用)
尝试将此添加到您的员工模型中:
def self.fonction
["Manager", "Consultant", "Employee"]
end
编辑#2
您还可以在模型中定义常量
FONCTIONS = ["Manager", "Consultant", "Employee"]
def fonction
FONCTIONS
end
答案 1 :(得分:0)
您是否创建了fonction
列?,在您的应用目录中输入您的终端时创建它:
rails g migration add_fonction_to_employees fonction
rake db:migrate
然后检查您的数据库在employees表中是否有fonction
列。