gpt4 book ai didi

json - 在 postman 中声明整个响应主体

转载 作者:行者123 更新时间:2023-12-05 01:26:31 24 4
gpt4 key购买 nike

我最近开始从事 Spring Boot 项目。
我正在寻找一种方法来断言我的 API 的整个响应。
这样做的目的是减少 API 的测试时间。

找到了下面提到的一些解决方案,但没有任何帮助我解决问题。

pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("string_you_want_to_search");
});


pm.test("Body is correct", function () {
pm.response.to.have.body("response_body_string");
});

当我将整个响应正文作为参数时,出现以下错误。
  • 未闭合的字符串

  • 2.
    enter image description here

    3.
    enter image description here

    最佳答案

    如果要使用与在其中定义字符串相同类型的引号,则必须对它们进行转义:

  • 'string with "quotes"'
  • "string with 'quotes'"
  • 'string with \'quotes\''
  • "string with \"quotes\""

  • 您可能希望将 json 放在单引号中,因为 json 本身不允许它们。

    关于json - 在 postman 中声明整个响应主体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48050024/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com