如何从请求主体获取结果

How to get the result from request body

本文关键字:获取 结果 主体 请求      更新时间:2023-09-26

我使用Node js

使用cheerio库,我尝试解析一个页面。

应要求,我得到了一个网页的正文。

在这个主体中,我想获得

的内容

以下是我的代码:

var cheerio = require('cheerio');
var request = require('request');
 request('http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22http%3A%2F%2Ffortune.daum.net%2Fexternal%2F4%2Frun%2Fstar_free%2Findex.php%22%20and%0A%20%20%20%20%20%20xpath%3D%27%2F%2Ftd%5Bcontains(%40style%2C%22font-family%3A%EA%B5%B4%EB%A6%BC%3B%20font-size%3A12px%3B%20color%3A%23333333%3B%20line-height%3A18px%3B%20padding-right%3A10px%22)%5D%27&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys',
function(error,response,body){ 
console.log(body);
//var info =JSON.parse(body);
});

"console.log(body)"的结果是"XML"。我想获取

的内容我能把它转换成JSON吗??

根据Yahoo的文档,您只需要添加format=json查询字符串参数。