我们已经在sailsJS 0.12上运行了一个应用- 一旦1.0发布,就会执行升级过程并进行升级
以前,某些模型支持“数组”类型,现在不再支持。有什么替代方法吗?它不在示例应用程序或文档中
我的模特是:
module.exports = {
attributes: {
provider: 'string',
uid: 'string',
email: 'string',
name: 'string',
firstName: 'string',
lastName: 'string',
password: 'string',
projects: {
collection: 'project',
via: 'owner'
},
creditsHistory:{
collection: 'creditsHistory',
via: 'owner'
},
userRoles: {type: 'array', defaultsTo : [roles.USER]}
},
Sails 1.0中受支持的类型为:https://sailsjs.com/documentation/concepts/models-and-orm/attributes
关于用什么替换数组类型,没有任何示例或示例 航行0.12支持的类型: https://0.12.sailsjs.com/documentation/concepts/models-and-orm/attributes
有人对此有任何想法吗?
答案 0 :(得分:1)
您可以这样使用它:
'coordinate': {
'type': 'json',
'required': true,
},
或者您可以像这样使用它:
'cost_price': {
'type': 'ref',
'columnType': "double"
},
在colunmType
中,您可以定义数据库配置类型