我可以使用邮递员
成功调用事件删除http://localhost:8080/test/api/events/18
{"Content-Type":"application/json"}
它有效。
我在角度2应用程序中调用相同的URL,如下所示:
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
let url = "http://localhost:8080/test/api/events/18";
this.http.delete(url, options);
or
this.http.delete(url)
未到达服务器。
答案 0 :(得分:1)
您需要订阅以使其正常运行。 http是Angular 2返回可观察的并且它们是懒惰的。
this.http.delete(url, options).subscribe(x=>console.log(x))