2017-04-18 39 views
0

以下尝试从Angular2应用程序发送文件始终在REST API中无法识别请求中的文件。 (即使内容接缝在那里!)如何让Angular2 Http上传文件?

花费数小时搜索StackOverflow和无数其他在线资源后,我得出结论,最新版本的Angular2 Http模块/服务现在应该能够处理文件上传。 (这是不能够在过去这样做的其实是很不错的!)

Component.html

<form [formGroup]="profileForm" (ngSubmit)="onSubmit()" novalidate> 
 
     <label>Votre avatar !</label> 
 
     <input class="form-control" type="file" name="avatar" (change)="imageUpload($event)" > 
 
     

Component.ts

imageUpload(e) { 
 
    let reader = new FileReader(); 
 
    //get the selected file from event 
 
    let file = e.target.files[0]; 
 
    reader.onloadend =() => { 
 
     this.image = reader.result; 
 
    } 
 
    reader.readAsDataURL(file); 
 
    } 
 

 

 
    onSubmit() { 
 
    if (this.image){ 
 
      this.authService.setAvatar(this.image).subscribe(
 
      d => { 
 
       //Do Nothing... Will navigate to this.router.url anyway so... 
 
      }, 
 
      err =>{ 
 
       this.errorMessage = err; 
 
       console.log(err); 
 
      } 
 

 
     ); 
 
     } 
 
    }

authService.ts

setAvatar(image:any){ 
 
    
 
    let form: FormData = new FormData(); 
 
    form.append('avatar', image); 
 
    return this.http.post (Config.REST_URL + 'user/setAvatar?token=' +localStorage.getItem('token'), form, 
 
    {headers: new Headers({'X-Requested-With': 'XMLHttpRequest' })} 
 
    ).catch(this.handleError); 
 
    }

REST_API PHP(LARAVEL)请求负载的

public function setAvatar(Request $request){ 
 
     if($request->hasFile("avatar")) { // ALWAYS FALSE !!!! 
 
      $avatar = $request->file("avatar"); 
 
      $filename = time() . "." . $avatar->getClientOriginalExtension(); 
 
      Image::make($avatar)->fit(300)->save(public_path("/uploads/avatars/" . $filename)); 
 
      return response()->json(['message' => "Avatar added !"], 200); 
 
     } 
 

 
     return response()->json(['message' => "Error_setAvatar: No file provided !"], 200); 
 
    }

内容(如从铬看出检查/网络)

------WebKitFormBoundary8BxyBbDYFTYpOyDP 
 
Content-Disposition: form-data; name="avatar"

应该更像...:

Content-Disposition: form-data; name="avatar"; filename="vlc926.png" 
 
Content-Type: image/png

+0

你可以尝试使用ng2-file-upload。为我工作很好。 –

回答

2

原来Angular2的HTTP现在可以发送文件...它的超级容易....我!只是不能相信有没有文件显示这个! Except this one. (Credits to MICHAŁ DYMEL)

https://devblog.dymel.pl/2016/09/02/upload-file-image-angular2-aspnetcore/

的HTML

<input #fileInput type="file"/> 
 
    <button (click)="addFile()">Add</button>

Component.ts

@ViewChild("fileInput") fileInput; 

addFile(): void { 
let fi = this.fileInput.nativeElement; 
if (fi.files && fi.files[0]) { 
    let fileToUpload = fi.files[0]; 
    this.uploadService 
     .upload(fileToUpload) 
     .subscribe(res => { 
      console.log(res); 
     }); 
    } 
} 

的service.ts

upload(fileToUpload: any) { 
    let input = new FormData(); 
    input.append("file", fileToUpload); 

    return this.http.post("/api/uploadFile", input); 
} 
+1

请不要张贴仅链接的答案。这些链接往往会打破,并使答案无用。相反,将相关信息提供给您的答案。 – ceejayoz

+1

我做了...希望这有助于其他人! – Tuthmosis