1

您好:我是 nodejs 和 mocha 的新手。我正在努力处理函数调用的返回值。即使(我认为)我已经适当地使用了回调 done(),它总是返回“未定义”。

在以下示例中,我如何确保 get() 的返回值始终返回正确的值而不是“未定义”。在这个函数中,我使用 requestJS 模块打开 google.com 并返回内容类型。但是,它当前返回未定义。

非常感谢!

更新了发布的反馈:

  • 包括Test Case 3示例,以实现Callback. 结果是:我现在可以根据需要打印数据。但是,我得到并错误告诉我调用 done()。我在做什么不正确?

在节点终端上运行的结果发布

 suite
    PRINT DATA: 200 text/html; charset=ISO-8859-1
    √ Test case 1 (607ms)

    undefined (<< ****** how to return the correct value?** )
    PRINT DATA: 200 text/html; charset=ISO-8859-1
    √ Test case 2 (603ms)

    PRINT DATA: 200 text/html; charset=ISO-8859-1
    √ Test case 3 
    Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
    ...

谷歌.js

var request = require('request');

describe('suite', function(){
    it('Tase case 1', function(done){
        var options = { url: 'http://www.google.com', headers: {'Content-Type': 'text/html'}};     
        request.get(options, function (err, res, body){
            console.log("PRINT DATA: " + res.statusCode + ' ' + res.headers['content-type']);  
            //do some stuff here                        
            done();
        });        
    });

    it('Test case 2', function(done){
        console.log(get(done));
    });

    it('Test Case 3', function(){
        doCallback(callbackHandler);  
    });

});

function get(done){
    var options = {
        url: 'http://www.google.com',
        headers: {'Content-Type': 'text/html'},
        encoding: null
    };     
    request.get(options, function(err, res, body){
        console.log("PRINT DATA: " + res.statusCode + ' ' + res.headers['content-type']);  
        //do some stuff here                    
        return done(), res.headers['content-type'];        
    }); 
}

function callbackHandler(data) {
    console.log("PRINT DATA: " + data.statusCode + ' ' + data.headers['content-type']);  
}

function doCallback(done){
    var options = {url: 'http://www.google.com', headers: {'Content-Type': 'text/html'}, encoding: null};     
    request.get(options, function(err, res, body){           
        var finalData = res;        
        return done(finalData); 
    }); 
}
4

1 回答 1

0

一种可能的解决方案(使用回调)

var request = require('request');

describe('suite', function(){
    it('Test Case 3', function(done){
        doCallback(callbackHandler, done);  
    });

    it('Test Case: 3A', function(done){
        doCallback(function(data){
        console.log("PRINT DATA: " + data.statusCode + ' ' + data.headers['content-type']);  
        done();        
    });  
});     

});

function callbackHandler(data, done) {
    console.log("PRINT DATA: " + data.statusCode + ' ' + data.headers['content-type']);  
    done();
}

function doCallback(callback, done){
    var options = {url: 'http://www.google.com', headers: {'Content-Type': 'text/html'}, encoding: null};     
    request.get(options, function(err, res, body){           
        return callback(res, done); 
    }); 
}

一种可能的解决方案(使用承诺)

var request = require('request');

describe('suite', function () {
    this.timeout(10000);
    it('Test Case 3', function () {
        return doCallback()
            .then(function (res) {
                console.log(res.statusCode + " " + res.headers['content-type']);
            })
            .catch(function(res){
                console.log(res);
            });
    }); });

function doCallback() {
    return new Promise(
        function (resolve, reject) {
            var options = { url: 'http://www.google.com', headers: { 'Content-Type': 'text/html' }, encoding: null };
            request.get(options, function (err, res, body) {
                if (err)
                    reject(err); 
                else 
                    resolve(res);
            });
        }
    ); }
于 2017-04-25T10:04:03.040 回答