提取参数
-
正则表达式
access=pm.response.text().match(new RegExp('"access":"(.+?)",'))[1]
-
json提取器
老方法:
res = JSON.parse(responseBody) pm.environment.set("token", res.data['access']);
新方法:
res=pm.response.json() pm.environment.set("token", res.data['access']);
参数加密
-
sha256
pm.environment.set("pwd",CryptoJS.SHA256('admin88888').toString());
-
md5
CryptoJS.MD5('待加密字符串').toString()
-
base64
CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse('待加密字符串'))
-
AES
CryptoJS.AES.encrypt('待加密字符串', '秘钥').toString()