我使用web api支持移动应用的服务器端,我需要提供支持将图像上传到用户配置文件的端点。 这样做的正确方法是什么?
基本上用户json看起来像这样:
{
"username": "username",
"userId" : "guid",
"userProfileImage" : "image goes here"?
}
我使用azure blob存储,我能够将图片上传到它(使用multipart / form-data),但我不知道如何将userId的Guid与图像一起传递以存储关系在数据库中。