File Upload In Angular?

前端 未结 14 2305
执念已碎
执念已碎 2020-11-22 08:10

I know this is very a general question but I am failing to upload a file in Angular 2. I have tried

1) http://valor-software.com/ng2-file-upload/ and

2) h

相关标签:
14条回答
  • 2020-11-22 09:09

    I have used the following tool from priming with success. I have no skin in the game with primeNg, just passing on my suggestion.

    http://www.primefaces.org/primeng/#/fileupload

    0 讨论(0)
  • 2020-11-22 09:09

    In the simplest form, the following code works in Angular 6/7

    this.http.post("http://destinationurl.com/endpoint", fileFormData)
      .subscribe(response => {
        //handle response
      }, err => {
        //handle error
      });
    

    Here is the complete implementation

    0 讨论(0)
提交回复
热议问题