在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
原理:在脚本开始之前将准备好的数据添加至数组内,每次请求根据顺序调用
wrk.method = "GET" -- 循环列表 local queries = { -- API与参数 "/app/getConDetails?ConttId=38163230&Type=2", "/app/getContDetails?ContId=381667330&Type=1", } local i = 0
request = function() –每次调用不同的接口数据 local path = wrk.format(nil, queries[i % #queries + 1]) i = i + 1 print(path) return path end |
请发表评论