Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是在做一些 API 测试,我正在尝试验证发送的 cookie 数据是否正确,但是我找不到任何关于从响应对象获取 cookie 的文档,只能从请求中获取。
那么有没有一种快速的方法来做到这一点,就像你对请求所做的那样req.cookies["myCookie"],我知道我可以从那里获取标头并获取 set-cookie ,但是尝试从那里手动解析 cookie 数据有点混乱.
req.cookies["myCookie"]
找不到解决方案,最终不得不对 set-cookie 标头进行文本匹配。