获取ArgumentError(错误的参数数量)错误但不知道Rails中缺少哪些参数?

问题描述 投票:0回答:1

我知道这在Rails中是一个常见的错误,但我无法弄清楚params缺失了什么。

我正在修补从React到Rails的获取请求以更新Sighting,这是AnimalUser的连接表。 sighting模型有一个使用Active Storage的has_one_attached。这被称为image,并不一定是Sighting表的属性,但从我理解的确需要在strong_params中。

这是React fetch:

  editSighting = (title, body, animalId, sightingId) => {

    fetch(`http://localhost:9000/api/v1/sightings/${sightingId}`, {
      method: "PATCH",
      headers: {
        "Content-Type": "application/json",
        "Accept": "application/json",
        "Authorization": localStorage.getItem("token")

      },
      body: JSON.stringify({
        title: title,
        body: body,
        likes: this.state.likes,
        animal_id: animalId,
        user_id: this.state.currentUser.id
    })
  })
  .then(r => r.json())
  .then(newSighting => {
    this.setState({ sightings: [...this.state.sightings, newSighting ]})
  })

这是SightingController


class Api::V1::SightingsController < ApplicationController
  before_action :find_sighting, only: [:update, :show, :destroy]

  def index
   @sightings = Sighting.all
   render json: @sightings
  end




  def create
    @sighting = Sighting.new(sighting_params)
    @sighting.image.attach(params[:sighting][:image])
     if @sighting.save && @sighting.image.attached
      render json: @sighting, status: :accepted
    else
      render json: { errors: @sighting.errors.full_messages }, status: :unprocessible_entity
    end
  end


  def update
    # if curr_user.id == @sighting.user_id
   @sighting.update(sighting_params)
   if @sighting.save
     render json: @sighting, status: :accepted
   else
     render json: { errors: @sighting.errors.full_messages }, status: :unprocessible_entity
   end
  end


  def destroy
    if curr_user.id == @sighting.user_id
      @sighting.image.purge_later
      @sighting.delete
      render json: "sighting deleted"
    else
      render json: { errors: "You are not authorized to delete"}
    end
  end


  private

  def sighting_params
   params.require[:sighting].permit(:title, :body, :likes, :image, :user_id, :animal_id)
  end

  def find_sighting
   @sighting = Sighting.find(params[:id])
  end
end

模特Sighting

class Sighting < ApplicationRecord
  has_one_attached :image

  def image_filename
    self.image.filename.to_s if self.image.attached?
  end

  def image_attached?
    self.image.attached?
  end

  belongs_to :user
  belongs_to :animal
  has_many :comments, :as => :commentable, dependent: :destroy

end

ModelSerializer

class SightingSerializer < ActiveModel::Serializer
  include Rails.application.routes.url_helpers


  attributes :id, :title, :body, :likes, :image, :created_at

 belongs_to :animal
 belongs_to :user
 has_many :comments, :as => :commentable, dependent: :destroy

 def image
   rails_blob_path(object.image, only_path: true) if object.image.attached?
 end

end

只需更新title,我就可以通过Rails控制台更新目标。

Rails错误:

Completed 500 Internal Server Error in 7ms (ActiveRecord: 6.2ms)



ArgumentError (wrong number of arguments (given 0, expected 1)):

app/controllers/api/v1/sightings_controller.rb:48:in `sighting_params'
app/controllers/api/v1/sightings_controller.rb:25:in `update'

这是从控制台运行的更新:

2.6.0 :017 > Sighting.first.update(title: "In NYC?? What a surprise!") 
  Sighting Load (0.6ms)  SELECT  "sightings".* FROM "sightings" ORDER BY "sightings"."id" ASC LIMIT $1  [["LIMIT", 1]]
   (0.2ms)  BEGIN
  User Load (0.4ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
  Animal Load (0.4ms)  SELECT  "animals".* FROM "animals" WHERE "animals"."id" = $1 LIMIT $2  [["id", 231], ["LIMIT", 1]]
  Sighting Update (0.6ms)  UPDATE "sightings" SET "title" = $1, "updated_at" = $2 WHERE "sightings"."id" = $3  [["title", "In NYC?? What a surprise!"], ["updated_at", "2019-03-26 16:23:11.098248"], ["id", 7]]
   (2.2ms)  COMMIT
 => true 
ruby-on-rails reactjs parameters
1个回答
0
投票

我将在您的控制器的参数中包含语法错误,该参数由评论者修复:

params.require(:sighting)...

其次,你需要将你的JSON与sighting param包装起来,因为你的控制器需要它:

fetch(`http://localhost:9000/api/v1/sightings/${sightingId}`, {
   method: "PATCH",
   headers: {
     "Content-Type": "application/json",
     "Accept": "application/json",
     "Authorization": localStorage.getItem("token")
   },
   body: JSON.stringify({
     sighting: {
        title: title,
        body: body,
        likes: this.state.likes,
        animal_id: animalId,
        user_id: this.state.currentUser.id
    }
})

当您将PUT输入控制器时,这将为您提供正确的参数。否则,它将不会保存您的值,因为它们不会通过您的基本参数验证。

© www.soinside.com 2019 - 2024. All rights reserved.