express js 4 how to serve json results without rendering any views /css

后端 未结 2 424
傲寒
傲寒 2021-02-02 13:23

I am using express 4 in order to create a json API service. I can\'t seem to define it to send a simple json without trying to render the view.

var express     =         


        
2条回答
  •  情深已故
    2021-02-02 13:57

    eventually it was the express generic catch 404's that made all the routes unvailables.

    app.use(function(req, res, next) {
        var err = new Error('Not Found');
        err.status = 404;
        next(err);
    });
    

    removing him solved it.

提交回复
热议问题