postman从response headers里面获取返回的set-cookie参数,设置为全局变量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postman从response headers里面获取返回的set-cookie参数,设置为全局变量相关的知识,希望对你有一定的参考价值。
参考技术A //先获取响应头中的set-cookie字段var jsondata = postman.getResponseHeader("set-cookie");
//打印
console.log(jsondata)
//设置全局变量
pm.globals.set("Cookie", jsondata);
在后面的用例需要用的时候,可以通过获取该全局变量进行测试
pm.globals.get("Cookie");
使用Postman 出现 Could not get any response
以上是关于postman从response headers里面获取返回的set-cookie参数,设置为全局变量的主要内容,如果未能解决你的问题,请参考以下文章
postman 请求接口Could not get any response(完美解决)
postman 请求接口Could not get any response(完美解决)