Rails如何在控制器中设置多个多态?

时间:2018-08-22 13:34:19

标签: ruby-on-rails ruby-on-rails-5

如何在控制器中设置多个多态?

一些代码如下:

question.rb

has_many :comments, :as => :commentable, :dependent => :destroy

comment.rb

belongs_to :commentable, polymorphic: true

has_many :reports, :as => :reportable, :dependent => :destroy

report.rb

belongs_to :reportable, polymorphic: true

routes.rb

resources :questions do

  resources :comments do 

    resources :reports

end

然后在_comment.html.erb中输入:

<%= link_to "<i class='fa fa-times mr2 fa-fw'></i>Report".html_safe,new_question_comment_report_path(@question,@comment),remote: true %>

我的report_controller.rb

class ReportsController < ApplicationController
  before_action :logged_in_user
  before_action :set_reportable

  def new
    @report = @reportable.reports.new
    respond_to do |format|
      format.html do
        redirect_to @reportable
      end
      format.js
    end
  end

  def create
    @report = @reportable.reports.new report_params
    @report.reporter_id = current_user.id
    if @report.save
      redirect_to @reportable
    end
  end

  def destroy
    @report = Report.find(params[:id])
    @report.destroy
  end

  private
  def set_reportable
    if params[:comment_id]
      @question = Question.find(params[:question_id])
      @reportable = @question.comments.find(params[:comment_id])
    end
  end

  def report_params
    params.require(:report).permit(:content,:radio_content)
  end
end

new.js.erb报告

$("body").append("<%= j render "reports/reports" %>")
$("#tip-offs").modal('show')

我的_reports.html.erb

<div class="modal tip-offs in" id="tip-offs" >
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button class="close" data-dismiss="modal" type="button">
          <span aria-hidden="true">&times;</span> <span class="sr-only">Close</span>
        </button>
        <h4 class="modal-title">
          <span data-model="action">Report</span>
        </h4>
      </div>
      <%= form_for [@reportable,@report] do |f| %>
      <div class="modal-body">
          <div class="pbt5">
            <%= f.text_area :content,row:3, class: "form-control",placeholder: "report more" %>
          </div>
      </div>
      <div class="modal-footer">
        <button class="btn btn-default" data-dismiss="modal" type="button">Close</button>
        <%= f.submit "report",class:"btn btn-primary" %>
      </div>
        <% end %>
    </div>
    <!-- /.modal-content -->
  </div>
  <!-- /.modal-dialog -->
</div>

如果报告网址带有注释,例如:

/questions/6/comments/15/reports/new

我得到了错误:

Processing by ReportsController#new as JS
  Parameters: {"question_id"=>"6", "comment_id"=>"15"}
  User Load (0.3ms)  SELECT  `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
  Question Load (0.2ms)  SELECT  `questions`.* FROM `questions` WHERE `questions`.`id` = 10 LIMIT 1
  Comment Load (0.2ms)  SELECT  `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 6 AND `comments`.`commentable_type` = 'Question' AND `comments`.`id` = 15 LIMIT 1
  Rendering reports/new.js.erb
  Rendered reports/_reports.html.erb (24.4ms)
  Rendered reports/new.js.erb (25.8ms)
Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.7ms)

NoMethodError - undefined method `comment_reports_path' for #<#<Class:0x00007fb020559858>:0x00007fb022d02c38>
Did you mean?  comment_like_tag:
  app/views/reports/_reports.html.erb:13:in `_app_views_reports__reports_html_erb___1071799134587169621_70197237478960'
  app/views/reports/new.js.erb:1:in `_app_views_reports_new_js_erb___4579025611719430071_70197237521140'

我想也许我在set_reportable reports_controller.rb 中的set_reportable中有错误,如果是,如何获得正确的报告URL?

非常感谢!

2 个答案:

答案 0 :(得分:0)

  

NoMethodError-未定义的方法“ comment_reports_path”

您的commentsreports都嵌套在questions下,因此您需要进行更改

<%= form_for [@reportable,@report] do |f| %>

<%= form_for [@question,@reportable,@report] do |f| %>

答案 1 :(得分:0)

您的评论路径嵌套在您的问题路径下。

resources :questions do
  resources :comments do 
    resources :reports
end

但是您的表单未提供构建URL的问题实例:

<%= form_for [@reportable,@report] do |f| %>

[@reportable, @report]扩展为comment_reports_path,不存在。

您还需要传递问题实例:[@question, @reportable, @report],它将扩展为question_comment_reports_path

如果运行rake routes(不确定,在Rails 5中可能是rails routes),则应该看到所有路径及其路径的列表。这样可以更轻松地推断现有路线及其所需的参数。