Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Mongoose 中,您可以轻松地将字段创建为字符串数组,如下所示:
{ ofString: [String] }
这是我想要的,除了我想存储一个字符串对象。
基本上就是这样我可以命名键而不是数字。
这是可能的,还是我必须使用混合类型?
你可以这样做:{ofString: Object}。Mixed意味着有时它会是一个数组,有时是一个对象,有时是一个字符串等等(真的任何事情都会发生)。
{ofString: Object}
Mixed