我使用邮递员来测试我的 api,我需要发送一个包含 json 对象和一些文件的 PUT 请求。我发送原始数据来测试这个,但我似乎无法弄清楚如何在其中添加文件。
PUT 请求
原始数据示例:
{
"email": "someone@something.com",
"info": "new account",
"file1" : (some file should be here),
"file2": (some file should be here)
}
我使用邮递员来测试我的 api,我需要发送一个包含 json 对象和一些文件的 PUT 请求。我发送原始数据来测试这个,但我似乎无法弄清楚如何在其中添加文件。
PUT 请求
原始数据示例:
{
"email": "someone@something.com",
"info": "new account",
"file1" : (some file should be here),
"file2": (some file should be here)
}