摘要:
转自:https://www.cnblogs.com/zichuan/p/10907506.html 1.添加一个BeanShell 内容如下: import java.util.UUID; UUID uuid1 = UUID.randomUUID(); //获取UID的值 //把uuid中的‘-’ 阅读全文
摘要:
期望:从返回值取order_sn并截取后7位作为下一步的入参 用JSON提取器分层取到order_sn 采用调试取样器查看结果 最后用JavaScript截图,从0开始数 ${__javaScript("${order_sn}".substring(7\,13),)}} 参考:https://www 阅读全文
摘要:
1 def replace_star(actual, expect): 2 count = 0 3 for expect_char in expect: 4 count += 1 5 if expect_char == '*': # 遍历预期字符串,找到*位置 6 actual = actual[: 阅读全文
摘要:
1 import json 2 import xmltodict 3 4 def xmlToJson(xml_str): 5 '''传入xml字符串,返回字典''' 6 dic = xmltodict.parse(xml_str, encoding='utf-8') 7 dic = json.dum 阅读全文
摘要:
import threading import datetime import pymssql import time from faker import Faker def insert_db(): for i in range(100): for j in range(100): print(j 阅读全文
摘要:
一、GROUP BY GROUP BY语句用来与聚合函数(aggregate functions such as COUNT, SUM, AVG, MIN, or MAX.)联合使用来得到一个或多个列的结果集。 语法如下: SELECT column1, column2, ... column_n, 阅读全文
摘要:
安装redis库 pip intall redis 导入库 import redis 连接redis,指定ip,端口,库号 con = redis.StrictRedis(host='ip', port=6379, password=password, db=0) 操作String类型 con.se 阅读全文