0
我正在使用rails與數據庫Mongodb。 我正在使用設計。設計有型號名稱user.The ID的用戶是mongodb混亂中的嵌套屬性
: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也裏面保存?