您是否有任何解决方法可以从字段列表中读取/添加/修改/删除项目?我知道Eve目前不支持,所以这里有什么推荐吗?
更具体地说,这是我的架构。
companies = {
'employees': {
'type': 'list',
'schema': {
'type': 'dict',
'schema': {
'user': {
'type': 'objectid',
'required': True,
'data_relation': {
'resource': 'users',
'field': '_id',
},
},
'role': {
'type': 'objectid',
'required': True,
'data_relation': {
'resource': 'company_roles',
'field': '_id',
},
},
},
},
}
}
我希望能够对员工进行CRUD操作。任何提示?