我正在尝试使用withCredentials将cookie发送到我的服务但无法找到如何实现它。
文档说“如果服务器需要用户凭据,我们将在请求标头中启用它们”没有示例。
我尝试了几种不同的方法,但它仍然不会发送我的cookie。
到目前为止,这是我的代码。
文档说“如果服务器需要用户凭据,我们将在请求标头中启用它们”没有示例。
我尝试了几种不同的方法,但它仍然不会发送我的cookie。
到目前为止,这是我的代码。
private systemConnect(token) { let headers = new Headers(); headers.append('Content-Type','application/json'); headers.append('X-CSRF-Token',token.token); let options = new RequestOptions({ headers: headers }); this.http.post(this.connectUrl,{ withCredentials: true },options).map(res => res.json()) .subscribe(uid => { console.log(uid); }); }
尝试像这样更改您的代码
原文链接:https://www.f2er.com/angularjs/143919.htmllet options = new RequestOptions({headers:headers,withCredentials:true});
和
this.http.post(this.connectUrl,< stringified_data>,options)…
如你所见,第二个参数应该是要发送的数据(使用JSON.stringify或只是”)以及三个参数中的所有选项。