此API语法适用于移动应用,但在离子服务上,它可以在网络浏览器上运行
let body = JSON.stringify({ "Id": Id });
let headers = new Headers({ 'Content-Type': 'application/json' });
return this.http.post(url, body, { headers: headers })
.map(res => res.json())
.catch(this.handleError);