Я новичок в c#
и в настоящее время пытаюсь POST
несколько txt
файлов на сервер с помощью веб-API, не может заставить это работать.После этой статьи я append
отправляю файлы в formData
и публикую их, используя следующий код:
public uploadMethod(formDataWithFiles) {
return this.$http.post("/actionApi/Utils/UploadFile", formDataWithFiles).then((res) => {
return res;
}).catch((err) => {
return err;
});
}
Это внутренний код, который должен получитьфайлы и анализируем их:
public async Task<HttpResponseMessage> UploadFile()
{
if (!Request.Content.IsMimeMultipartContent())
{
return Request.CreateErrorResponse(HttpStatusCode.UnsupportedMediaType, "The request doesn't contain valid content!");
}
try
{
var provider = new MultipartMemoryStreamProvider();
await Request.Content.ReadAsMultipartAsync(provider);
foreach (var file in provider.Contents)
{
var dataStream = await file.ReadAsStreamAsync();
// use the data stream to persist the data to the server (file system etc)
var response = Request.CreateResponse(HttpStatusCode.OK);
response.Content = new StringContent("Successful upload", Encoding.UTF8, "text/plain");
response.Content.Headers.ContentType = new MediaTypeWithQualityHeaderValue(@"text/html");
return response;
}
return Request.CreateErrorResponse(HttpStatusCode.InternalServerError,"problem.");
}
catch (Exception e)
{
return Request.CreateErrorResponse(HttpStatusCode.InternalServerError, e.Message);
}
}
Исключение, которое я получаю:
Не удалось загрузить ресурс: сервер ответил со статусом 415 (неподдерживаемый тип носителя)
Тело запроса:
General:
Request URL: http://localhost:48738/actionApi/Utils/UploadFile
Referrer Policy: no-referrer-when-downgrade
Request Headers:
Provisional headers are shown
Accept: application/json, text/plain, */*
Authorization: Bearer _en....
Origin: http://localhost:48738
Referer: http://localhost:48738/
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36
Request Patload:
------WebKitFormBoundaryYAuasRL66eAdhUtd
Content-Disposition: form-data; name="34.txt"; filename="34.txt"
Content-Type: text/plain
------WebKitFormBoundaryYAuasRL66eAdhUtd
Content-Disposition: form-data; name="35.txt"; filename="35.txt"
Content-Type: text/plain