MultipartException при загрузке файла с углом / пружиной - PullRequest
0 голосов
/ 06 февраля 2019

, когда я пытаюсь загрузить файл с angular / spring, я получил исключение: org.springframework.web.multipart.MultipartException: текущий запрос не является многочастным, но когда я пытаюсь сделать это с почтальоном, он работает

мой код: угловой

upload.service.ts:

public save(file: File) {
    this.headers.set('Content-Type', 'multipart/form-data');
    const formdata: FormData = new FormData();
    formdata.append('file', file);
    return this.http.post(this.baseUrl + "upload", formdata, { headers: 
    this.headers }).map(resp => resp.json());

}

загрузить компонент:

  currentFileUpload: File;

  constructor(private uploadService: UploadService) { }

  ngOnInit() {
  }

  selectFile(event) {
    this.currentFileUpload = event.target.files[0];
  }

  uploadFile() {
    this.uploadService.save(this.currentFileUpload).subscribe(resp => {
      console.log(resp);
    },
      err => {
        console.log(err);
      });
  }

html код:

<div class="custom-file">
  <input type="file" (change)="selectFile($event)" class="custom-file-input" id="customFile">
  <label class="custom-file-label" for="customFile">choisissez un fichier (*pdf, *csv ,*docs)</label>
  <button class="btn btn-danger" (click)="uploadFile()">Upload</button>
</div>

код бэкэнда:

@PostMapping("/api/upload")
public String handleFileUpload(@RequestParam("file") MultipartFile file) {
    String name = file.getOriginalFilename();
     if (!file.isEmpty()) {
         try {
             byte[] bytes = file.getBytes();
             BufferedOutputStream stream =
                     new BufferedOutputStream(new FileOutputStream(new File("src/upload/"+name)));
             stream.write(bytes);
             stream.close();
             return "You successfully uploaded " + name + " into " + name + "-uploaded !";
         } catch (Exception e) {
             return "You failed to upload " + name + " => " + e.getMessage();
         }
     } else {
         return "You failed to upload " + name + " because the file was empty.";
     }

}

когда я пробую это с почтальоном: enter image description here

Spring Exception: enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...