0
다음과 같이 params가 표시됩니다.강력한 매개 변수를 사용하여 맞춤 매개 변수를 허용하는 방법 젬?
{"utf8"=>"✓", "authenticity_token"=>"auth_token=", "js_data_entry"=>[{"data_entry"=>[{"name"=>"test_book22", "node_id"=>"65", "field_type"=>"Text", "options_attributes"=>[{"option_value"=>""}], "location"=>"Body", "rank"=>"", "must_fill"=>"0", "multi"=>"0", "role"=>["4"], "update_db"=>"vocation.name", "select_db"=>""}], "js_editor"=>[{"field_id"=>"", "field_class"=>"", "js_code"=>""}]}], "node_id"=>"65", "commit"=>"Submit", "action"=>"create", "controller"=>"data_entries"}
나는
def entry_params
params.require(:js_data_entry).permit([:node_id, :field_type, :name, :location, :rank, :multi, :must_fill, :update_db, :select_db, :role, :options_attributes])
end
을 다음과 같이 PARAMS을 허용하려하지만,이 문제를 해결하기 위해 도와주세요
undefined method `permit' for #<Array:0xc603e78>
을 던지고. 다음과 같이 내가 문제를 해결
Rails3 –