如何从NodeJS中的回调函数中获取值?

时间:2014-04-27 09:16:27

标签: javascript node.js callback geocoding

我是NodeJs的新手,我正在制作一个快速应用程序来学习,在这个应用程序中我想利用用户提供的经度和经度通过节点地理编码器反转地理编码地址,下面的代码允许我将模型保存在数据库中。我想让用户知道过程是否成功,如何从保存功能中获取状态值并将其传递给响应?

提前致谢。

app.post('/persons', function (req, res){
  var createPersonWithGeocode = function (callback){
    var lat=req.body.latitude;
    var lon=req.body.longitude;
    var status;
     function geocodePerson() {
        geocoder.reverse(lat,lon,createPerson);
     }
    function createPerson(err, geo) {
        var geoPerson = new Person({
            name:       req.body.name,
            midname:    req.body.midname,
            height:     req.body.height,
            gender:     req.body.gender,
            age:        req.body.age,
            eyes:       req.body.eyes,
            complexion: req.body.complexion,
            hair:       req.body.hair,
            latitude:   req.body.latitude,
            longitude:  req.body.longitude,
            geocoding:  JSON.stringify(geo),
            description:req.body.description,
        });
        geoPerson.save(function (err) {
            if (!err) {
                console.log("Created");
                status="true";
            } else {
                console.log(err);
                status="false";
            }
        });
    }
    geocodePerson();
  }
  return res.send(createPersonWithGeocode());
});

1 个答案:

答案 0 :(得分:2)

如果您对回调函数没有任何操作,则永远无法获得响应状态。首先:

geoPerson.save(function (err) {
    if (!err) {
        console.log("Created");
        status="true";
    } else {
        console.log(err);
        status="false";
    }
    callback(status);
});

现在您应该提供一个将发送响应的回调函数。而不是

return res.send(createPersonWithGeocode());

你应该做

createPersonWithGeocode(function(status) {
    res.send(status);
});

这就是异步代码的工作原理。