我的localhost应用程序使用POST
方法调用其他Web服务。
(这是一个不在localhost的远程Web服务)。
由于标题响应,我只得到了这些:
pragma: "no-cache", content-type: "application/json", cache-control: "no-cache, no-store, max-age=0, must-revalidate", expires: "0".
我想让set-cookie
标头用它来调用其他网络服务。
在Chrome开发者工具中,Cookie被设置为httpOnly
,这就是为什么我无法在前端部分获取它。
有没有解决方案?