我正在使用带有数据库 Mongodb 的 Rails。我正在使用设计。设计有模型名称用户。用户的 id 在
:id => current_user.id
我想制作一个模型,这样当从表单中保存数据时,当前用户的 id 也将保存在集合中。我的员工的模型是
class Employee
include Mongoid::Document
field :first_name, type: String
field :middle_name, type: String
field :last_name, type: String
field :otherid, type: String
field :licennum, type: String
field :citizennum, type: String
field :licenexp, type: String
field :gender, type: String
field :state, type: String
field :marital_status, type: String
field :country, type: String
field :birthdate, type: String
field :nickname, type: String
field :description, type: String
validates_presence_of :first_name
{ }
end
我应该在大括号内放什么,这样当从该模型保存数据时,它也会将当前用户 ID 保存在其中?