2020
10-08
10-08
Postman内建变量常用方法实例解析
一、Postman有以下内建变量,适合一次性使用:{{$guid}}//生成GUID{{$timestamp}}//当前时间戳{{$randomInt}}//0-1000的随机整数二、内建变量的应用举例,获取当前时间戳//随机整数constrandomInt=(min,max)=>Math.floor(Math.random()*(max-min+1))+min;pm.globals.set("random_number",randomInt(300,1000));//从多个选项中选择实现:constrandomInt=(min,max)=>Math.floor(Math.random()*(max-min...
继续阅读 >