使用 Postman 发送(嵌套)json 对象和文件

Sending (nested) json object with file using Postman

使用 Postman,我可以在带有表单数据的请求中附加文件,我也可以发送原始格式的嵌套 JSON 对象,但是我怎样才能做到这两者:发送带有文件的嵌套结构数据,例如:

"data": {
    "normal_fields": {
        "field1": "value1",
        "field2": "value2"
    },
    "image_file": <file>
}

尝试像下面这样设置值并选择要上传的文件。

那样对我不起作用。对我来说只有这样工作:

property[nested_field1]
property[nested_field2]

或包含对象的数组:

array[0][nested_field1]
array[0][nested_field2]
array[1][nested_field1]
array[1][nested_field2]

对于几年后看的任何人,您需要将其发送为 normal_fields.field1