{
name: Li,
friend: [{
friendName: Tom,
phone: 110,
adress: ‘’Here ',
}, {
friendName: Tim,
phone: 120,
adress: ‘’there',
}]
}
类似这种的嵌套文档在 Node.js 端在创建 Collection 的时候应该怎么控制,尤其是 friend
在创建时候是以数组形式定义还是直接以这种形式
{
friendName: friendName,
phone: phone,
adress: ‘’adress',
}
在插入新的数据的时候 Mongo 自己识别,插入第二条 friend
数据的时候,friend
怎转变成数组,对嵌套数据的赋值要怎么做