私は次のmogoidドキュメント定義/クラスを持っています:
class Exercise
include Mongoid::Document
field :name, :type => String
field :description, :type => String
belongs_to :group
validates_presence_of :name, :description
end
次に、次のコントローラーと保存方法があります。
class ExercisesController < ApplicationController
respond_to :json
def create
@exercise = Exercise.create(params[:exercise])
@exercise.save!
respond_with @exercise
end
end
これは私には間違っているようで、大量割り当ての問題が発生する可能性があります。
人々は通常これからどのように保護し、強力なパラメータの宝石を使用するのは良い考えですか?