RESTサービス経由でファイルをアップロードする際に、何も説明せずに400()エラーが発生します。このアプリケーションは、Javaスクリプトのフロントエンドを使用して実装されたレストサービスを介してファイルをアップロードおよびダウンロードするSpringブートアプリケーションです。400()エラー、RESTファイルアップロードエラー
これを解決するにはヘルプをご覧ください。あなたの助けに感謝します。ありがとう。
はコードです: JS:
document.getElementById('import2').onclick = function() {
var files = document.getElementById('selectFiles').files;
console.log(files);
if (files.length <= 0) {
return false;
}
//serverUploaded = true;
var form_data = new FormData(files.item(0));
//from new NLP
$.ajax({
type: "POST",
url: "http://localhost:8080/gsta/upload",
processData: false,
contentType: false,
async: false,
cache: false,
data: form_data,
success: function (result) {
//alert(JSON.stringify(result));
//$("#out_lexalytics").html(JSON.stringify(result));
if (result) {
if(result.statusCode == 200)
{
serverUploaded = true;
}
}
}
});
}
RESTサービス:
@PostMapping("/upload")
// If not @RestController, uncomment this
@ResponseBody
public ResponseEntity<?> uploadFile(@RequestParam("data") MultipartFile uploadfile) {
logger.debug("Single file upload!");
if (uploadfile != null && uploadfile.isEmpty()) {
return new ResponseEntity("please select a file!", HttpStatus.OK);
}
try {
saveUploadedFiles(Arrays.asList(uploadfile));
} catch (IOException e) {
e.printStackTrace();
return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
}
return new ResponseEntity("Successfully uploaded - " + uploadfile.getOriginalFilename(), new HttpHeaders(), HttpStatus.OK);
}
郵便配達の残りのクライアントを使用するときは正しいですが、ajaxコールを試しましたか? – DMM
[link](https://www.mkyong.com/spring-boot/spring-boot-file-upload-example-ajax-and-rest/)を確認してください。 – Habil