我得到了html格式的响应。所有教程都使用:
var y = document.getElementsByClassName('mw-search-result-heading');
或
var jsonData = JSON.parse(response);
但都失败了。第一个原因是未定义文档,第二个原因是响应不是JSON而是HTML。那么,如何在Postman中正确解析html呢?
ivqmmu1c1#
您可以使用cheerio jQuery api示例:
const $ = cheerio.load(pm.response.text(); console.log($("title").text()); // get title
1条答案
按热度按时间ivqmmu1c1#
您可以使用cheerio jQuery api
示例: