收到ArgumentError(错误的参数数量)错误,但是不知道Rails中缺少哪些参数?

时间:2019-03-26 15:46:23

标签: ruby-on-rails reactjs parameters

我知道这是Rails中的常见错误,但是我无法弄清缺少哪些参数。

我正在修补从React到Rails的获取请求,以更新Sighting,这是AnimalUser的联接表。 sighting模型使用活动存储具有has_one_attached。这称为image,不一定是Sighting表的属性,但据我了解,确实需要在strong_params中。

这是React提取:

  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

我能够通过Rails控制台更新瞄准器,而仅更新title没问题。

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 

1 个答案:

答案 0 :(得分:0)

我将在控制器的参数中包含由注释者修复的语法错误:

persons
    .stream()
    .filter(p -> p.getFirstName().equals("Steve") 
         || p.getLastName().equals("Steve"))
    .collect(Collectors.asList());

第二,您需要将params.require(:sighting)... 参数传递给JSON并将其包装起来,因为控制器需要它。

sighting

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