Angular 4不会发送带有“withCredentials:true”的Cookie

时间:2017-07-22 16:07:39

标签: angular

我有一个帖子请求后面的代码。

submitOffer(val: NewOfferForm) {
        const body = JSON.stringify({data: val, TOKEN: this.currentUser.token});
        return this.http.post(this.pathRoute.path + 'NEW_OFFER', body, { withCredentials: true })
            .map((response: Response) => {
                const Response = response.json();
                if (Response) {
                    return Response;
                } else {
                    return response.json().ERROR;
                }
            });
    }

我已经在Angular中设置了Cookie,并希望将它们与请求一起发送,但它不起作用。

0 个答案:

没有答案