7

https://github.com/danwrong/restler http://nodejs.org/

为了下载文件,我在服务器端脚本(而不是来自客户端 Web 浏览器)中使用来自 nodejs 的 restler。

我可以在下载完成时使用异步方式触发事件,如下所示:

rest = require('./restler');
rest.get('http://google.com').on('complete', function(result) {
  if (result instanceof Error) {
    sys.puts('Error: ' + result.message);
    this.retry(5000); // try again after 5 sec
  } else {
    sys.puts(result);
  }
});

但我这次更喜欢使用同步方式。

我怎样才能调用它并阻止/等到我得到响应?

以及之后如何获取数据或错误

var req = rest.get('http://twaud.io/api/v1/users/danwrong.json');
// how to block/wait here until file is downloaded
if (req.response instanceof Error) {  // this does not worn neither
  ...
} else {
  ...
}
4

1 回答 1

1

我认为您正在寻找像Step这样的库,这将使 restler 出现同步。

您为其提供一系列函数,以便您可以以更线性的方式编写代码。

var rest = require('restler');
var Step = require('step');
var sys = require('sys');

function retry(millis) {
    console.log('Queing another try');
    setTimeout(download, millis);
}

function download() {
    Step(function() {
            // 1
            console.log('Starting download');
            rest.get('http://google.com').on('complete', this);
        },
        function(result) {
            // 2
            console.log('Download complete');
            if (result instanceof Error) {
                sys.puts('Error: ' + result.message);
                retry(5000); // try again after 5 sec
            } else {
                sys.puts(result);
            }
            return result;
        },
        function(result) {
            // 3
            console.log("This won't run until after Download is complete");
        });
}
download();
于 2013-07-24T17:47:54.900 回答