在mongoose中如果某一个字段的类型未知,或者希望将来给他赋值一个对象(任何对象),这个该怎么定义,如下
var optLogSchema = new Schema({
target: {//操作对象(任意对象,没有固定的结构)
type:?????
}
});
module.exports = optLogSchema;
在mongoose中如果某一个字段的类型未知,或者希望将来给他赋值一个对象(任何对象),这个该怎么定义,如下
var optLogSchema = new Schema({
target: {//操作对象(任意对象,没有固定的结构)
type:?????
}
});
module.exports = optLogSchema;