如何将超级代理收到的多个Cookie设置回客户端

时间:2018-08-12 02:20:26

标签: node.js cookies koa superagent

我使用superagent来请求node.js中的服务器,如:

const res = await superagent
         .get(apiHost + apiUrl)
         .set(appTokenName, appToken);

并且响应标头包含set-cookie,该值是一个数组:

["xxx=xxx;domain=xxx", "xxx=xxx;domain=xxx", "xxx=xxx;domain=xxx"]

现在,我想将Cookie设置回node.js中的客户端,并且我使用Koa.js。我该怎么办?

0 个答案:

没有答案