使用postman批量上传表单数据?

问题描述 投票:0回答:1
{
    "addStandard": [
        {   
            "attachments": ["file1,file2,file3"],   
            "organization": "3", 
            "designationNubmer": "3", 
            "recognition": "3", 
            "title": "3", 
            "generalUse": "3",
            // "applicant_info_id": 1,
            // "attachmentsId": 1
        },
        {
            "organization": "4", 
            "designationNubmer": "4", 
            "recognition": "4", 
            "title": "4", 
            "generalUse": "4",
            // "applicant_info_id": 1,
            //"attachmentsId": 2
        }
    ]
}

如何在表单数据中批量添加上述 JSON 对象?附件是文件对象的实际数组。

我不知道如何在表单数据中批量添加附件文件对象? 我知道上面的屏幕截图是错误的,因为我也没有提到“addStandards”。

json postman backend bulkinsert
1个回答
0
投票

你不会

您应该使用 raw 并通过选择 json 将 Content-Type 设置为

application/json
。标准 JSON 也不支持注释

© www.soinside.com 2019 - 2024. All rights reserved.