我需要从GET
请求中读取一个 id 并将其POST
用于执行测试。我从 GET 检索到的 id 是来自以下表达式的数组形式:
And def reqId = response.teams[*].resource[1].resourceRequestId
`["59aeb24be4b0b17227553d07"]`
我将此 ID 存储为变量:
And def reqId = response.teams[*].resource[1].resourceRequestId
当我在POST
操作中使用它时,我收到以下错误:
exception":"org.springframework.http.converter.HttpMessageNotReadableException","message":"Could not read document: Can not deserialize instance of java.lang.String out of START_ARRAY token\n
有没有一种方法可以执行 JSON.stringify() 等来将值转换为字符串或提取它并在POST
请求中更有目的地使用它