Angular 2 GET withCredentials(接受来自服务器的cookie)

时间:2016-06-28 15:45:49

标签: angularjs typescript angular

我可以看到withCredentials: true is implemented in angular 2 now

接受来自服务器的cookie。

但是我不确定我应该如何使用它。

我试过

this.http.get( API_PATH + 'auth/getSession/' + TOKEN, {
  withCredentials: true
} )

但是西兰花引发了错误

Argument of type '{ withCredentials: boolean; }' is not assignable to parameter of type 'RequestOptionsArgs'

我使用Angular CLI的1.0.0-beta.6。

1 个答案:

答案 0 :(得分:2)

withCredentials可用于Angular2的RC2版本。 Angular CLI 1.0.0-beta.6使用RC1版本。

您应该升级到beta.8才能使用版本RC2 +。