0

我知道在python中,您可以在脚本中下载xml数据。

我在问JS是否可以做同样的事情。

就像我运行“node downloadxml.js”时一样,它会执行“GET”来获取 xml 数据并将其存储在变量中

就像做

$.ajax({
    url: request_url,
    success: processData,
    dataType: 'xml'});

在浏览器中

4

1 回答 1

0

我相信这就是你想要的

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

这允许您向服务器发出 http 请求并处理接收到的数据

于 2013-09-28T04:28:21.063 回答