我正在嘗試將Evaluation
模型添加到我的Rails 4
應用中。Rails 4多態關聯和關注
我製作了一個名爲evaluation.rb
的模型。它具有:
evaluator
class Evaluation < ActiveRecord::Base
belongs_to :evaluator, :polymorphic => true
belongs_to :evaluatable, :polymorphic => true
我也讓關注和evaluatable
爲:
module Evaluator
extend ActiveSupport::Concern
included do
has_many :given_evaluations, as: :evaluator, dependent: :destroy, class_name: 'Evaluation'
end
end
module Evaluatable
extend ActiveSupport::Concern
included do
has_many :received_evaluations, as: :evaluatable, dependent: :destroy, class_name: 'Evaluation'
end
end
我已經包含在我的用戶模型中的每個關注:
class User < ActiveRecord::Base
include Evaluator
include Evaluatable
在我的節目頁,我想顯示特定用戶的評估(從其他用戶(評估人員)接收)。
在我的節目,我有:
<% Evaluation.find(params[:id]).evaluations.order('created_at DESC').each do |eval| %>
<div id="portfolioFiltering" class="masonry-wrapper row">
<%= eval.remark %>
<%= eval.personal_score %>
<small><%= eval.created_at %></small>
在我的評價形式,我「不知道如何指定評估的收件人我已經基本形成,但我不清楚關於如何將它與誰應該接受評估用戶
<%= simple_form_for(@evaluation) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :score, collection: 1..10, autofocus: true, :label => "How do you rate this experience (1 being did not meet expectations - 10 being met all expectations) ?" %>
<%= f.input :remark, as: :text, :label => "Evaluate your project experience", :input_html => {:rows => 10} %>
我的評價表有:
t.integer "user_id"
t.integer "evaluatable_id"
t.string "evaluatable_type"
t.integer "overall_score"
t.integer "project_score"
t.integer "personal_score"
t.text "remark"
t.boolean "work_again?"
t.boolean "continue_project?"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
add_index "evaluations", ["evaluatable_type", "evaluatable_id"], name: "index_evaluations_on_evaluatable_type_and_evaluatable_id", unique: true, using: :btree
問題
如何設置顯示頁面以顯示用戶收到的評估?
我該如何調整表格,使其指定用戶ID作爲應接受評估的人員?
偉大的問題,你很擅長解釋你的問題..讓我們看看是否有幫助 – illusionist
你打算使用'評估'評估用戶以外的對象?根據你的回覆,答案可以簡化。 –
是的。我想評估用戶做的項目 – Mel