Document.js
module.exports = {
attributes: {
type: {
type: 'string'
},
createdBy: {
model: 'User',
required: true
},
body: {
type: 'string'
},
comments: {
model: 'Comments'
},
metaInfo: {
type: 'json'
}
}
};
我想知道是否有任何方法可以编写类似于上面给出的模型,因此,我可以将json对象添加到包含名称 - 值对的 metaInfo
例如: JSON: {name:'Project',value:'MyFirstProject'}
这可以通过水线吗?
提前致谢。