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.
SailsJS mongo 适配器(sails-mongo)可以使用现有的 mongo 数据(不是通过 SailsJS 创建的)和字符串 _id 字段(而不是 ObjectIds)吗?
是的。您只需在模型中autoPK设置设置false:
autoPK
false
module.exports = { autoPK: false, attributes: {...}, ... }
在此处查看完整文档。