如何以放心的发布方法发送带有数组的请求正文

时间:2019-09-04 20:24:40

标签: java arrays json api rest-assured

我一直在致力于放心的邮政方式。此帖子的请求有效负载包含嵌套数组。我提供了样本请求有效负载以供参考。

我尝试使用json文件。工作正常。但是它更多的是静态类型。在这种情况下,testId是从其他request(get)生成的。在请求有效负载中,我陷入了测试的Json阵列。

"field1" : .....
   "field2" : .....
       "test" : [
       {
          "test1" : [
           {
             "number" : 1,
             "name" : testing
             "test2" : {
                "type" : 2
               }
           }
      ],
     "testId" : 12345
      }
   ]
   }

JSONObject requestBody = new JSONObject();
   requestBody.put("field1", "1" );
   requestBody.put("field2", "2" );
   JSONArray requestBody1 = new JSONArray();

除了使用json文件外,我还建议您解决此问题。如何发布包含多个数组的请求正文?

0 个答案:

没有答案