我想在我的应用程序中使用sails属性类型“ array”,但在任何地方都找不到此文档。
我想执行以下操作:
module.exports = {
attributes : {
images: {
type: ['string']
},
location: {
type: ['float','float']
}
}
}
image是一个数组,将保存图像URL列表,而location将保存2个浮点数。这会奏效吗?否则我该如何工作。
谢谢
PS:我只与MongoDB合作
最佳答案
据我所知,您只能像这样指定它:
module.exports = {
attributes : {
images: {
type: 'array'
},
location: {
type: 'array'
}
}
}
见Sails ORM Attributes
关于sails.js - 在Sails中使用数组属性类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38550060/