[ruby-on-rails] 강력한 매개 변수로 배열을 허용하는 방법

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



답변

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가 주석에서 언급 한 것처럼 배열 선언은 속성 목록 의 끝에 있어야 합니다. 그렇지 않으면 구문 오류가 발생합니다.)


답변

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

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

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

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

답변

그것은 같아야

params.permit(:id => [])

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

params.permit(id: [])


답변

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

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]])


답변

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

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

이것은 작동합니다 :

params.require(:model).permit(filters: [[:name, values: []]])


답변