sailsjs:我試圖定義一個模型。我想添加一個屬性vendorID。該類型將是供應商集合中的monogdb objectID。 喜歡的東西了專賣店模式: module.exports ={ attributes :{ vendorId : { type: <Monog ObjectId>}, <-- this would be a FK to the vendor Collection storeName: {type: 'string'} .... }
Sails 10.x水線:用於Mongo對象的屬性類型ID
水線實況說:
的屬性類型,目前可供選擇:
- 串
- 文本
- 整數
- 浮動
- 日期
- 時間
- 日期時間
- 布爾
- 二進制
- 陣列
- JSON
那麼挑選呢?
感謝
工作。我注意到ObjectID被轉換爲水線中的字符串。所以我可以在其他集合中使用該字符串作爲參考。 – tomatom 2014-09-08 18:27:03