实际上,我正在开发一个使用 Angular 2 编码的接口的 Spring REST API。
我的问题是我无法使用 Angular 2 上传文件。
我在 java 中的 Webresources 是:
@RequestMapping(method = RequestMethod.POST, value = "/upload")
public String handleFileUpload(@RequestParam MultipartFile file) {
//Dosomething
}
当我通过带有 Auth 标头等的 URL 请求调用它时,它可以完美地工作......(带有适用于 Chrome 的 Advanced Rest Client 扩展)
证明:(在这种情况下一切正常)
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver" />
Spring 配置文件和 Pom 依赖项
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2</version>
</dependency>
但是当我尝试用 webform 做同样的事情时:
<input type="file" #files (change)="change(files)"/>
<pre>{{fileContents$|async}}</pre>
使用(更改)方法:
change(file) {
let formData = new FormData();
formData.append("file", file);
console.log(formData);
let headers = new Headers({
'Authorization': 'Bearer ' + this.token,
'Content-Type': 'multipart/form-data'
});
this.http.post(this.url, formData, {headers}).map(res => res.json()).subscribe((data) => console.log(data));
/*
Observable.fromPromise(fetch(this.url,
{method: 'post', body: formData},
{headers: this.headers}
)).subscribe(()=>console.log('done'));
*/
}
我的网络服务返回一个错误 500,在 tomcat 日志中显示:http: //pastebin.com/PGdcFUQb
我也尝试了该'Content-Type': undefined
方法,但没有成功(在这种情况下,Web 服务返回 415 错误。
有人可以帮我找出问题所在吗?
问题解决了,我稍后会用我的代码更新这个问题:) 但是,看看 plunker 它工作得很好。谢谢。