关于PostMan发送请求
在PostMan里面设置引用全局变量(环境变量和集合变量不常用)
附上官网变量设置:https://learning.postman.com/docs/writing-scripts/script-references/postman-sandbox-api-reference/#writing-test-assertions
1、点击小眼睛设置变量key-value
2、在这里获取变量
3、在对应的body或者params中引用变量{{变量名字}}
正则表达式,获取信息,设置变量
获取response中的文本信息,截取其中的一部分字段
var str1 = pm.response.text();
//data":{"submissionId":3828,"
var submissionId = str1.match(new RegExp('ssionId":(.+?),'));
console.log(submissionId);