如何在Postman中正确解析html响应

k10s72fa  于 2022-11-07  发布在  Postman
关注(0)|答案(1)|浏览(234)

我得到了html格式的响应。所有教程都使用:

var y = document.getElementsByClassName('mw-search-result-heading');

var jsonData = JSON.parse(response);

但都失败了。
第一个原因是未定义文档,第二个原因是响应不是JSON而是HTML。
那么,如何在Postman中正确解析html呢?

ivqmmu1c

ivqmmu1c1#

您可以使用cheerio jQuery api
示例:

const $ = cheerio.load(pm.response.text();
console.log($("title").text()); // get title

相关问题