答案 0 :(得分:0)
您可以使用JSR223 PreProcessor和以下Groovy code动态地做到这一点:
def body = sampler.getArguments().getArgument(0).getValue().replaceAll('\"\"','null')
sampler.getArguments().removeAllArguments()
sampler.addNonEncodedArgument('', body,'')
sampler.setPostBodyRaw(true)
将JSR223预处理器添加为HTTP请求的子代,它将用空值替换空白值。
sampler
代表HTTPSamplerProxy类实例的地方,它提供对请求正文,URL,标头,Cookie等的访问。
答案 1 :(得分:0)