2

我正在尝试以 JSON 格式在 Dropbox 中获取一组图像 URL。为此,我编写了以下函数:

router.get('/thumbnails', function(req, res, next){
var images = [];
var imagesCount = -1;
var isLoggedIn = !!req.user;
var dropboxClient = req.app.get('dropboxClient');
console.log(dropboxClient);
dropboxClient.authenticate({interactive: false}, function(error, client) {
    if (error) {
        console.log(error);
        return 0
    }
    if (dropboxClient.isAuthenticated()) {
        dropboxClient.readdir(dropboxConfig.folder, function(error, entries) {
            if (error) {
                console.log(error);
                return 0
            }
            imagesCount = entries.length;
            entries.forEach(function(entry){
                var path = dropboxConfig.folder + '/' + entry;
                dropboxClient.makeUrl(path, {download: true}, function(err, res){
                    if(err){
                        console.log(err);
                        return 0
                    }
                    //console.log(res.url);
                    images.push({url: res.url});
                    console.log("Processed " + images.length + "/" + imagesCount);
                    if(images.length == imagesCount){
                        console.log(images);
                        res.json(images);
                    }
                });

            });
        });
    }

});

});

观察控制台输出后,我相信所有 URL 都已加载到数组中,但地址http://.../thumbnails上的数据不可用,过了一会儿,如果尝试在浏览器中加载数据,它会返回 ERR_EMPTY_RESPONSE .

有谁知道为什么该函数不返回数据?

4

1 回答 1

2
dropboxClient.makeUrl(path, {download: true}, function(err, dbc_res){
    if(err){
        console.log(err);
        return 0
    }

    //console.log(res.url);
    images.push({url: dbc_res.url});
    console.log("Processed " + images.length + "/" + imagesCount);
    if(images.length == imagesCount){
        console.log(images);
        //res come from dropboxClient, not router.get!!!
        res.json(images);
    }
});

问题是res.json,您回答 dropboxClient,而不是用户,您需要重命名resat dropboxClient.makeUrl(path, {download: true}, function(err, res){,以便用户得到他的答案。

于 2015-07-16T10:57:37.663 回答