File Upload In Angular?

前端 未结 14 2536
执念已碎
执念已碎 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

    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

提交回复
热议问题