标签:put log get请求 htm 没有 http 导致 https 参考
beanshell中获取url中参数
get请求:url=https://xx.xxx.cn/key=value
String value = vars.get("value");
log.Info("value="+value );
一直返回value=null
之前一直用vars,但是没有仔细看他是操作变量的,导致value=null
参考文案:http://www.cnblogs.com/puresoul/p/4949889.html
1、get请求:url=https://xx.xxx.cn/key=${value}
vars.put("value","value");
String value = vars.get("value");
log.Info("value="+value );
一直返回value=value
2、或者在用户自定义变量中定义value的值
标签:put log get请求 htm 没有 http 导致 https 参考
原文地址:http://www.cnblogs.com/someonetwothree/p/6930138.html