无效状态代码:node.js API 中的 0

Invalid status code : 0 in node.js API

我正在 node 中构建一个简单的 api 并用 postgre 作为 Db 表达 tutorial.I 我还在学习和新手 tech.I 按照所说的一切并给予完全许可到 postgre 考虑我的 db.But 问题,当我与邮递员核实时,我收到此错误无效状态代码:0

我的server.js

var express = require('express');
var logger = require('morgan');
var bodyParser = require('body-parser');

var api = require('./api/index');

var app = express();


///////////////////////
// Server Middleware
///////////////////////

app.use(logger(app.get("env") === "production" ? "combined" : "dev"));

// parse application/json
app.use(bodyParser.json());

// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }));

// CORS
// This allows client applications from other domains use the API Server
app.use(function(req, res, next) {
    res.header("Access-Control-Allow-Origin", "*");
    res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
    next();
});


//////////////////
// API Queries
//////////////////

app.use('/', api);


//////////////////
// Server Setup
//////////////////

app.set("env", process.env.NODE_ENV || "development");
app.set("host", process.env.HOST || "0.0.0.0");
app.set("port", process.env.PORT || 8080);

app.listen(app.get("port"), function () {
    console.log('\n' + '**********************************');
    console.log('REST API listening on port ' + app.get("port"));
    console.log('**********************************' + '\n');
});


////////////////////
// Error Handlers
////////////////////

// catch 404 and forward to error handler
app.use(function(req, res, next) {
    var err = new Error('Not Found');
    err.status = 404;
    next(err);
});

// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
    app.use(function(err, req, res, next) {
        res.status( err.code || 500 )
        .json({
            status: 'error',
            message: err
        });
    });
}

// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
    res.status(err.status || 500)
    .json({
        status: 'error',
        message: err.message
    });
});


module.exports = app;

queries.js

var promise = require('bluebird');

var options ={
    promiseLib : promise
};

var pgp = require('pg-promise')(options);
var connectionString = 'postgres://localhost:5432/star';
console.log(connectionString);
var db = pgp(connectionString);


function getAllStarships(req, res, next) {
  db.any('SELECT * FROM starships')
    .then(function (data) {
      res.status(200)
        .json({
          status: 'success',
          data: data,
          message: 'Retrieved all starships'
        });
    })
    .catch(function (err) {
      return next(err);
    });
}


module.exports ={getAllStarships: getAllStarships,};

index.js

var express = require('express');
var router = express.Router();


router.get('/', function(req, res, next) {
    res.status(200)
      .json({
        status: 'success',
        message: 'Live long and prosper!'
      });
});



var db = require('./queries');

router.get('/api/starships', db.getAllStarships);


module.exports = router;

从 pgadmin 编辑器查询 Db 工作正常并返回 table。

示例数据库

DROP DATABASE IF EXISTS startrek;

创建数据库 startrek;

\c 开始;

创造 TABLE 艘星际飞船 ( ID序列主键, 名称 VARCHAR, 注册表 VARCHAR, 从属 VARCHAR, 发射整数, class 变量, VARCHAR船长 );

INSERT INTO starships(名称、注册、附属、发射、class、船长) 值('USS Enterprise'、'NCC-1701'、'United Federation of Planets Starfleet'、2258、'Constitution'、'James T. Kirk');

感谢任何帮助。 谢谢。

知道了..问题出在 Authentication.Modified 我的 query.js 和

var db = pgp({
    host: 'localhost',
    port: 5432,
    database: 'star',
    user: 'postgres',
    password: 'pes'
});

它奏效了。