gpt4 book ai didi

ruby-on-rails - Rails 4 多态关联和关注点

转载 作者:行者123 更新时间:2023-12-04 08:48:00 26 4
gpt4 key购买 nike

我正在尝试添加 Evaluation我的模型 Rails 4应用程序。

我制作了一个名为 evaluation.rb 的模型.它有:

class Evaluation < ActiveRecord::Base

belongs_to :evaluator, :polymorphic => true
belongs_to :evaluatable, :polymorphic => true

我也关注过 evaluatorevaluatable作为:
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 指定为应该接受评估的人?

最佳答案

如何设置显示页面以显示收到的用户评价?

您的模型问题应该可以帮助您解决这个问题。在您的 UsersController#show操作,只需添加以下内容即可解决问题:

@received_evaluations = @user.received_evaluations

然后你可以在你的表演模板中使用它:
<% @received_evaluations.each do |evaluation| %>
// render some view stuff
<% end %>

或使用 collection rendering .

注意: Evaluation.find(...)当前在您看来应该放在 Controller 操作中,将其留在 View 中不是一个好习惯。

我如何调整表单,以便将用户 ID 指定为应该接受评估的人?

如果您已确定将充当 evaluatable 的用户您可以在 Controller 操作或 View 表单中设置它,以防您在页面上有要评估的用户列表。

在 Controller 中:
@evaluation.evaluatable_id = user_to_evaluate.id
@evaluation.evaluatable_type = user_to_evaluate.class.to_s

或者这个更简单的语句应该做同样的事情:
@evaluation.evaluatable = user_to_evaluate

同样,您应该能够以相同的方式设置评估器:
@evaluation.evaluator = user_that_evaluates

在 View 中:
<% @users_to_evaluate.each do |user| %>
<%= simple_form_for(Evaluation.new) 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} %>
<%= f.hidden_field :evaluator_id, :value => current_user.id %>
<%= f.hidden_field :evaluator_type, :value => current_user.class.to_s %>
<%= f.hidden_field :evaluatable_id, :value => user.id %>
<%= f.hidden_field :evaluatable_type, :value => user.class.to_s %>
</div>
<% end %>
<% end %>

关于ruby-on-rails - Rails 4 多态关联和关注点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36394489/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com