0

所以我有 NodeJS 并安装了模块 xml2js。在本教程中,我们有一个示例,从目录中获取一个 xml 文件并将其转换JSON.stringify()为示例中的内容。现在有没有可能而不是调用本地 xml 文件 (foo.xml),而是调用 XML 服务的 url,例如:www.wunderground.com/city.ect/$data=xml

var parser = new xml2js.Parser(); 
parser.addListener('end', function(result) {
    var res = JSON.stringify(result);   
        console.log('converted'); 
}); 
fs.readFile(__dirname + '/foo.xml', function(err, data) {
    parser.parseString(data); 
});
4

1 回答 1

1

您需要创建一个 http 请求而不是读取文件。像这样的东西,我认为:

http.get("http://www.google.com/index.html", function(res) {
  res.on('data', function (chunk) {
    parser.parseString(chunk); 
  });
}).on('error', function(e) {
  console.log("Got error: " + e.message);
});

http://nodejs.org/api/http.html#http_http_request_options_callback

于 2013-05-26T20:43:22.373 回答