私はこのようなmongoDBスキームを持っています
new Schema({
productDetail: [ {
productYear: String,
productNumber: String,
productType: [ { type: Schema.ObjectId, ref: 'type' } ]
} ],
created_at: string
)}
Rails と mongoid で同じことを試してみると、子要素とデータ型を Hash オブジェクトに追加できませんでした
class Product
include Mongoid::Document
has_many :types
field :productDetail, type: Hash
field :created_at, type: string
end
それは可能ですか?