答案 0 :(得分:0)
因为你只提供图像,所以我只能提供引导文件
请务必在下拉按钮的包装div上添加课程var headers = new Headers();
headers.append('Content-Type', 'application/json');
this.http.post('http://some-url/',
JSON.stringify({firstName:'Joe',lastName:'Smith'}),
{headers:headers})
.map((res: Response) => res.json())
.subscribe((res:Person) => this.postResponse = res);
。