angular 2 http withCredentials

前端之家收集整理的这篇文章主要介绍了angular 2 http withCredentials前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用withCredentials将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);
    });
}
尝试像这样更改您的代码

let options = new RequestOptions({headers:headers,withCredentials:true});

this.http.post(this.connectUrl,< stringified_data>,options)…

如你所见,第二个参数应该是要发送的数据(使用JSON.stringify或只是”)以及三个参数中的所有选项。

原文链接:https://www.f2er.com/angularjs/143919.html

猜你在找的Angularjs相关文章