1. ホーム
  2. ruby-on-rails

[解決済み] Paramが無いか、値が空である。ParameterMissing in ResultsController#update

2022-02-07 11:08:16

質問

あるウェブサイトに所属する結果があります。ウェブサイトを作成した後、結果も作成し、その編集ページにリダイレクトしています。ここで、さらにいくつかの値を追加したいと思います。

私の問題は 結果を更新しようとすると、次のようになります。

param is missing or the value is empty: result


    Request

    Parameters:

    {"utf8"=>"✓",  "_method"=>"patch",  "authenticity_token"=>"GRN/y/04Qbsm9DzlUAbUYF8ZSv2EMHnRZgBZY/6GMDlOBdq8V5Uncij9VRp51uydC6M/qc61jPWwpUehSuc5xA==", "data"=>["//html/body/div[position() = 3]/ul/li[position() = 16]/ul/li[position() = 2]/child::text()",  "//html/body/div[position()
    = 3]/ul/li[position() = 16]/ul/li[position() = 2]/p/a/child::text()",  "//html/body/div[position() = 3]/ul/li[position() = 16]/ul/li[position() = 4]/child::text()",  "//html/body/div[position()
    = 3]/ul/li[position() = 16]/ul/li[position() = 5]/a/child::text()"],  "commit"=>"Update Result",  "id"=>"66"}

私のResult paramsはこのような感じです。

def result_params
      params.require(:result).permit(:data)
    end

私のモデル

class Result < ActiveRecord::Base
  belongs_to :website
  attr_accessor :website_id
  attr_accessor :data

  serialize :data, Array
end

以下は私のコントローラのコードです。

    class ResultsController < ApplicationController
  before_action :set_result, only: [:show, :edit, :update, :destroy]

  # GET /Results
  # GET /Results.json
  def index
    @results = Result.all
  end

  # GET /Results/1
  # GET /Results/1.json
  def show
  end

  # GET /Results/new
  def new
    @result = Result.new
  end

  # GET /Results/1/edit
  def edit
    @result = Result.find(params[:id])
  end

  # POST /Results
  # POST /Results.json
  def create
    @result = Result.new(result_params)

    respond_to do |format|
      if @result.save
        format.html { redirect_to @result, notice: 'Result was successfully created.' }
        format.json { render :show, status: :created, location: result }
      else
        format.html { render :new }
        format.json { render json: @result.errors, status: :unprocessable_entity }
      end
    end
  end

  # PATCH/PUT /Results/1
  # PATCH/PUT /Results/1.json
  def update
    respond_to do |format|
      if @result.update(result_params )
        format.html { redirect_to @result, notice: 'Result was successfully updated.' }
        format.json { render :show, status: :ok, location: @result }
      else
        format.html { render :edit }
        format.json { render json: @result.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /Results/1
  # DELETE /Results/1.json
  def destroy
    @result.destroy
    respond_to do |format|
      format.html { redirect_to results_url, notice: 'Result was successfully destroyed.' }
      format.json { head :no_content }
    end
  end


  private
    # Use callbacks to share common setup or constraints between actions.
    def set_result
      @result = Result.find(params[:id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def result_params
      params.permit(:data => [])
    end
end

私の見解です。

<%= form_for(@result) do |f| %>
  <% if @result.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@result.errors.count, "error") %> prohibited this result from being saved:</h2>

      <ul>
      <% @result.errors.full_messages.each do |message| %>
        <li><%= message %></li>
      <% end %>
      </ul>
    </div>
  <% end %>


    <div class="field">
      <% if @result.website.url != nil %>
      <%= atts = get_all_elements(@result.website.url)%>
          <% atts.each do |p| %>
              <div>
                <%= check_box_tag "data[]", get_xpath_from_node(p)%>
                <%= p.text %>
              </div>
          <%end%>
      <% end%>
    </div>

  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

そして、ここが編集結果ページを呼び出す場所です。

def update
    respond_to do |format|
      if @website.update(website_params)
        format.html { redirect_to @website, notice: 'Website was successfully updated.' }
        format.json { render :show, status: :ok, location: @website }
      else
        format.html { render :edit }
        format.json { render json: @website.errors, status: :unprocessable_entity }
      end
    end
  end

私はすでに私が見つけることができるすべてのソリューションを試してみましたが、それらのどれも私には動作しないようです。

解決方法を教えてください。

問題はここにある。

params.require(:result).permit(:data)

から 必要 のドキュメントを参照してください。

require は、パラメータが存在するかどうかを確認します。存在する場合は を返します。 ActionController::ParameterMissing エラーが発生します。

あなたが要求しているのは result というパラメータがありますが、これはparamsに含まれていません。すべての値は data パラメータを使用します。requireを削除するとうまくいくはずです。

params.permit(:data)

requireを維持したい場合は data 内部 result をフォームに追加します。