강력한 매개 변수로 배열을 허용하는 방법


269

Rails 4 앱으로 리메이크하기 때문에 has_many : through 연결을 사용하는 작동하는 Rails 3 앱이 있는데, Rails 4 버전에서 관련 모델의 ID를 저장할 수 있습니다.

이 두 가지 관련 모델은 두 버전에서 동일합니다.

Categorization.rb

class Categorization < ActiveRecord::Base

  belongs_to :question
  belongs_to :category
end

Question.rb

has_many :categorizations
has_many :categories, through: :categorizations

Category.rb

has_many :categorizations
has_many :questions, through: :categorizations

두 앱 모두에서 카테고리 ID는 다음과 같은 작성 조치로 전달됩니다.

  "question"=>{"question_content"=>"How do you spell car?", "question_details"=>"blah ", "category_ids"=>["", "2"],

Rails 3 앱에서 새 질문을 만들면 질문 테이블에 삽입 한 다음 분류 테이블에 삽입합니다

 SQL (82.1ms)  INSERT INTO "questions" ("accepted_answer_id", "city", "created_at", "details", "province", "province_id", "question", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["accepted_answer_id", nil], ["city", "dd"], ["created_at", Tue, 14 May 2013 17:10:25 UTC +00:00], ["details", "greyound?"], ["province", nil], ["province_id", 2], ["question", "Whos' the biggest dog in the world"], ["updated_at", Tue, 14 May 2013 17:10:25 UTC +00:00], ["user_id", 53]]
  SQL (0.4ms)  INSERT INTO "categorizations" ("category_id", "created_at", "question_id", "updated_at") VALUES (?, ?, ?, ?)  [["category_id", 2], ["created_at", Tue, 14 May 2013 17:10:25 UTC +00:00], ["question_id", 66], ["updated_at", Tue, 14 May 2013 17:10:25 UTC +00:00]]

rails 4 앱에서 QuestionController # create의 매개 변수를 처리 한 후 서버 로그에이 오류가 발생합니다.

Unpermitted parameters: category_ids

질문은 질문 테이블에만 삽입됩니다.

 (0.2ms)  BEGIN
  SQL (67.6ms)  INSERT INTO "questions" ("city", "created_at", "province_id", "question_content", "question_details", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["city", "dd"], ["created_at", Tue, 14 May 2013 17:17:53 UTC +00:00], ["province_id", 3], ["question_content", "How's your car?"], ["question_details", "is it runnign"], ["updated_at", Tue, 14 May 2013 17:17:53 UTC +00:00], ["user_id", 12]]
   (31.9ms)  COMMIT

질문 모델에 category_ids를 저장하지 않더라도 questions_controller에서 category_ids를 허용되는 매개 변수로 설정했습니다.

   def question_params

      params.require(:question).permit(:question_details, :question_content, :user_id, :accepted_answer_id, :province_id, :city, :category_ids)
    end

내가 category_id를 저장하는 방법을 설명 할 수 있습니까? 두 앱의 categories_controller.rb에는 작성 작업이 없습니다.

두 앱 모두에서 동일한 세 가지 테이블입니다.

 create_table "questions", force: true do |t|
    t.text     "question_details"
    t.string   "question_content"
    t.integer  "user_id"
    t.integer  "accepted_answer_id"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.integer  "province_id"
    t.string   "city"
  end

 create_table "categories", force: true do |t|
    t.string   "name"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "categorizations", force: true do |t|
    t.integer  "category_id"
    t.integer  "question_id"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

최신 정보

이것이 Rails 3 앱의 액션 생성입니다

  def create
      @question = Question.new(params[:question])
      respond_to do |format|
      if @question.save
        format.html { redirect_to @question, notice: 'Question was successfully created.' }
        format.json { render json: @question, status: :created, location: @question }
      else
        format.html { render action: "new" }
        format.json { render json: @question.errors, status: :unprocessable_entity }
      end
    end
end

이것이 Rails 4 앱의 액션 생성입니다

   def create
      @question = Question.new(question_params)

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

이것은 question_params 메소드입니다

 private
    def question_params 
      params.require(:question).permit(:question_details, :question_content, :user_id, :accepted_answer_id, :province_id, :city, :category_ids)
    end

작성 작업은 두 앱 모두에서 어떤 모양입니까?
bennick

@bennick 두 가지 생성 작업을 추가했습니다. 감사합니다
Leahcim

답변:


527

https://github.com/rails/strong_parameters 는 문서의 관련 섹션처럼 보입니다.

허용되는 스칼라 유형은 String, Symbol, NilClass, Numeric, TrueClass, FalseClass, Date, Time, DateTime, StringIO, IO, ActionDispatch :: Http :: UploadedFile 및 Rack :: Test :: UploadedFile입니다.

params의 값이 허용 된 스칼라 값의 배열이어야 함을 선언하려면 키를 빈 배열에 매핑하십시오.

params.permit(:id => [])

내 응용 프로그램에서 category_ids가 배열의 작성 작업으로 전달됩니다.

"category_ids"=>["", "2"],

따라서 강력한 매개 변수를 선언 할 때 category_ids를 배열로 명시 적으로 설정했습니다.

params.require(:question).permit(:question_details, :question_content, :user_id, :accepted_answer_id, :province_id, :city, :category_ids => [])

지금 완벽하게 작동합니다!

( 중요 : @Lenart가 주석에서 언급 한 것처럼 배열 선언은 속성 목록 의 끝에 있어야 합니다. 그렇지 않으면 구문 오류가 발생합니다.)


105
또한 배열에 대한 선언이 속성 목록의 끝에 있어야한다는 것을 알았습니다. 그렇지 않으면 구문 오류가 발생합니다syntax error, unexpected ')', expecting =>
Lenart

45
배열 선언 (중첩 매개 변수)이 끝나는 이유는 ActionController :: Parameters.permit이 각 인수가 해시 또는 심볼이기를 기대하기 때문입니다. 루비 매직은 메소드 호출 이 끝날 때 모든 키 값 쌍 을 하나의 해시로 변환하지만, 메소드 호출에서 기호를 키 / 값 쌍과 혼합하면 루비는 어떻게해야할지 모릅니다.
sameers

7
category_ids배열이 아닌 경우 (예 : 문자열이 전송 된 경우) 레일은 완전히 견과류 ERROR TypeError: expected Array (got String) for param `category_ids'가되고 레일에 버그가 있습니까? 편집 : 예 그것은 : github.com/rails/rails/issues/11502
Dominik Goltermann

4
@ Lenart 감사합니다, 나는 미쳐 가고 있다고 생각했다. 이것은 적어도 strong_params README
Sebastialonso에

3
@Lenart 구문 오류를 피하려면 해시로 추가 할 수 있습니다. params.permit(:foo, { bar: [] }, :zoo).
Foo Bar Zoo

99

해시 배열을 허용하려면 (또는 an array of objectsJSON의 관점에서)

params.permit(:foo, array: [:key1, :key2])

여기서 주목해야 할 2 가지 사항 :

  1. arraypermit메소드 의 마지막 인수 여야합니다 .
  2. 배열에 해시 키를 지정해야합니다. 그렇지 않으면 오류가 발생 Unpermitted parameter: array하여이 경우 디버깅이 매우 어렵습니다.

그리고 배열의 배열은 지원되지 않습니다 (아직) : github.com/rails/rails/issues/23640
Andrei Dziahel

11
array마지막에있을 필요는 없지만 유효한 Ruby가 있는지 확인해야합니다. params.permit(:foo, array: [:key1, :key2], :bar)인터프리터가 첫 번째 세트 후 해시 키 : 값 쌍을 기대하므로 유효한 루비가 아닙니다. 유효한 Ruby를 얻으려면params.permit(:foo, {array: [:key1, :key2]}, :bar)
mastaBlasta

당신은 챔피언입니다!
사탕

22

그것은 같아야

params.permit(:id => [])

또한 rails 버전 4 이상부터 사용할 수 있습니다.

params.permit(id: [])

12
배열이 허가 방법의 마지막 인수가되어서는 안됩니다.
Matias Elorriaga

3
Rails v4 +에 적용한 해시 구문은 실제로 Rails 프레임 워크가 아니라 Ruby 1.9 이상에서 사용 가능한 구문입니다 (Rails 4는 Ruby 1.9.3 이상이 필요하지만)
MegaTux

11

다음과 같은 해시 구조가있는 경우 :

Parameters: {"link"=>{"title"=>"Something", "time_span"=>[{"start"=>"2017-05-06T16:00:00.000Z", "end"=>"2017-05-06T17:00:00.000Z"}]}}

그런 다음 이것이 내가 작동하게하는 방법입니다.

params.require(:link).permit(:title, time_span: [[:start, :end]])

6

나는 아직 언급 할 수는 없지만 Fellow Stranger 솔루션에 따르면 값이 배열 인 키가있는 경우 중첩을 유지할 수 있습니다. 이처럼 :

filters: [{ name: 'test name', values: ['test value 1', 'test value 2'] }]

이것은 작동합니다 :

params.require(:model).permit(filters: [[:name, values: []]])
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.