当我将文件从Postman rest客户端上传到服务器(部署在远程计算机上的spring应用程序)时,我可以毫无问题地上传文件。
但是当我尝试在angular.js中编写一个rest客户端并通过请求发送时,我收到400 Bad Request Error。我知道这是因为从客户端发送的内容和服务器期望的内容之间存在一些语法问题。
服务器端代码:
@CrossOrigin(originins =“*”) @RequestMapping(value =“/ upload”,method = RequestMethod.POST,consumes = {“multipart / form-data”})
public @ResponseBody String handleFileUpload(@RequestParam(“files”)MultipartFile file){ 。 。 。 。 }
客户端代码:
$scope.uploadFiles = function () {
alert("inside");
var request = {
method: 'POST',
url: 'http://IP ADDRESS and PORT NUMBER/upload',
data: formdata,
headers: {
'Content-Type': undefined
}
};
$http(request)
.success(function (response) {
alert("success: "+response);
})
.error(function (err) {alert("error: "+err);
});
}
答案 0 :(得分:0)
我已使用Spring和AngularJS在此处上传代码以进行文件上传:
https://gist.github.com/abdulrafique/9219f7164fdf5dc6dfa8da110be6a04e