我可以看到withCredentials: trueis implemented in angular 2 now
从服务器接受cookies。
但是我不知道该怎么用。
我试过了

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。

最佳答案

withCredentials可从Angular2的RC2版本中使用。angular cli 1.0.0-beta.6使用rc1版本。
你应该升级到beta.8才能使用rc2+版本。

关于angularjs - Angular 2 GET withCredentials(接受来自服务器的cookie),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38080742/

10-10 16:03