ASP.NET Core 2.0 and Angular 4.3 File Download Successfully

Using the new Angular 4.3 HttpClient , how can I download and access files in an ASP.NET Core 2.0 controller when sending progress reports to a client?

+4
source share
2 answers

The following is a working example:

HTML

<input #file type="file" multiple (change)="upload(file.files)" />
<span *ngIf="uploadProgress > 0 && uploadProgress < 100">
    {{uploadProgress}}%
</span>

TypeScript

import { Component } from '@angular/core';
import { HttpClient, HttpRequest, HttpEventType, HttpResponse } from '@angular/common/http'

@Component({
    selector: 'files',
    templateUrl: './files.component.html',
})
export class FilesComponent {
    public uploadProgress: number;

    constructor(private http: HttpClient) { }

    upload(files) {
        if (files.length === 0)
            return;

        const formData = new FormData();

        for (let file of files)
            formData.append(file.name, file);

        const req = new HttpRequest('POST', `api/files`, formData, {
            reportProgress: true,
        });

        this.http.request(req).subscribe(event => {
            if (event.type === HttpEventType.UploadProgress)
                this.uploadProgress = Math.round(100 * event.loaded / event.total);
            else if (event instanceof HttpResponse)
                console.log('Files uploaded!');
        });
    }
}

Controller

[HttpPost, DisableRequestSizeLimit, Route("api/files")]
public async Task UploadFiles()
{
    var files = Request.Form.Files; // now you have them
}
+7
source

You can use the Microsoft.AspNetCore.Http.IFormFile interface, which represents a file sent from HttpRequest, to simplify access to the file.

[HttpPost, DisableRequestSizeLimit, Route("api/files")]
public async Task UploadFiles(IFormFile file){
    //your file stream
    var stream = file.OpenReadStream();
}
0
source

Source: https://habr.com/ru/post/1685634/


All Articles