>Document.js
module.exports = {
attributes: {
type: {
type: 'string'
},
createdBy: {
model: 'User',
required: true
},
body: {
type: 'string'
},
comments: {
model: 'Comments'
},
metaInfo: {
type: 'json'
}
}
};
我想知道是否有任何方法可以编写像上面给出的模型,以便我可以将 json 对象添加到包含名称-值对的 metaInfo。
例如:杰森:{ 名称: '项目', 值: '我的第一个项目'}
这可以通过吃水线吗?
提前谢谢。
我相信该评论回答了您的问题。如果您需要任何进一步的帮助,可以参考 Sails Github 页面中提出的此问题中的答案:JSON 字符串数组