我可以看到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。
答案 0 :(得分:2)
withCredentials
可用于Angular2的RC2版本。 Angular CLI 1.0.0-beta.6使用RC1版本。
您应该升级到beta.8才能使用版本RC2 +。