我试图弄清楚是否可以使用curl(或其他任何方式)将媒体文件上传到字典类型内的python-eve字段。
文档http://docs.python-eve.org/en/latest/features.html仅具有以下简单示例
accounts = {
...,
'pic': {'type': 'media'},
...
}
curl -F "pic=@profile.jpg"
那这个呢?
accounts = {
...,
'extras': {
'type': 'dict',
'schema': {
'pic': {'type': 'media'},
...
}
}
}
我尝试过 curl -F“ extras.pic=@profile.jpg”, curl -F“ extras:pic=@profile.jpg” 等
我还尝试了子资源,但是没有运气。
我将接受我不允许按照自己的意愿来构造架构,但是如果有办法,我将很高兴知道。