如何为Node.js和express.js编写异步代码

时间:2017-01-14 18:17:15

标签: node.js rxjs

我正在尝试编写长池。

  • 获取/task - 获取所有任务
  • POST /task - 使用正文{"title":"content"}
  • 添加新任务
  • 获取/task-new - 在rxjs订阅事件后解析,以便我们可以获取所有任务 http://pokazywarka.pl/ybtufb/

代码:

var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var jsonParser = bodyParser.json();
var request2 = require('request');
var Promise = require("bluebird");
var Rx = require('rx');
var RxNode = require('rx-node');
var source = Rx.Observable.return(42);
var emitter = RxNode.toEventEmitter(source, 'data');

app.get('/task', function (req, res) {
    request2('http://localhost:3000/task', function (error, response, body) {
        if (!error && response.statusCode == 200) {
            res.send(JSON.parse(body));
        }
    })
});

app.post('/task', jsonParser, function (req, res) {
    // Ensure to call publish to fire events from the observable
    emitter.publish();
    request2.post({
            url: 'http://localhost:3000/task',
            headers: {'Content-Type': 'application/json'},
            body: '{"title":"' + req.body.title + '"}'
        },
        function (error, response, body) {
            res.send(req.body);
        }
    );
});

setTimeout(function () {
    emitter.on('data', function (data) {
        console.log('Data: ' + data);
    });
},0);

app.get('/task-new', function (req, res) {
    new Promise(function (resolve, reject) {
        emitter.on('end', function () {
            console.log('End');
            resolve();
        });

        setTimeout(function () {
            resolve();
            console.log("1");
        }, 5000);
    }).then(function () {
        res.send('nowe taski');
    });
});

app.listen(2000, function () {
    console.log('Example app listening on port 2000!')
});

我正在使用带有db.json的json-server:

{
    "task": [
        {
            "id": 1,
            "title": "task1"
        },
        {
            "title": "task2",
            "id": 2
        }
    ]
}

所以,代码很简单。我希望在订阅可观察事件之后解析Promise但是express.js阻塞线程并在5000毫秒后解析,并返回事件(应该在事件发生后更早解析)

2 个答案:

答案 0 :(得分:0)

在新Promise之前使用return(function(resolve,reject){

答案 1 :(得分:0)

一切都很好。我和Postman一起测试过。所以我用浏览器等待GET并使用Postman进行POST,请求以正确的顺序解决。 (第一次POST第二次GET)