最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Sending (nested) json object with file using Postman - Stack Overflow

programmeradmin5浏览0评论

With Postman, I can attach files in requests with form-data, I can also send nested JSON object in raw format, but how can I do both: sending nested-structure data with file, e.g:

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

With Postman, I can attach files in requests with form-data, I can also send nested JSON object in raw format, but how can I do both: sending nested-structure data with file, e.g:

"data": {
    "normal_fields": {
        "field1": "value1",
        "field2": "value2"
    },
    "image_file": <file>
}
Share Improve this question asked May 20, 2015 at 13:57 Huy TRANHuy TRAN 4962 gold badges5 silver badges16 bronze badges 1
  • just convert your file to byte array and add the result to your JSON – Daemon025 Commented May 20, 2015 at 14:07
Add a ment  | 

4 Answers 4

Reset to default 10

Try setting values like below and choose file to upload.

For anyone looking a few years later, you need to send it as normal_fields.field1 something like

It didn't worked for me like that. For me only worked this way:

property[nested_field1]
property[nested_field2]

or arrays with objects:

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

In case if someone needs to send an array of files, this syntax worked for me:

<field_name>[0]
<field_name>[1]
...
<field_name>[n]

But if you are sending files as an array of nested objects: I.e.

{
    "files": [
        {
            "file": <file>
        },
        {
            "file": <file>
        },
    ]
}

Then try this:

files[0]file
files[1]file
发布评论

评论列表(0)

  1. 暂无评论