javascript - UnhandledPromiseRejectionWarning 错误 : Slash in host identifier

标签 javascript mongodb nodemon

我正在尝试在我的终端中运行 nodemon index.js,但我收到以下错误,我完全不知道这对我来说意味着什么非常不清楚。

谁能告诉我如何解决这个问题?

index.js

const express = require('express');
const morgan = require('morgan');
const bodyParser = require('body-parser');
const mongoose = require('mongoose');

var app = express();

var router = require('./services/router');

mongoose.connect('mongodb://localhost:apiAuth');

app.use(morgan('combined'));
app.use(bodyParser.json());
app.use('/v1', router);

var PORT = process.env.PORT || 3000;
var HOST = process.env.HOST || '127.0.0.1';

console.log('Listening on', HOST, PORT);
app.listen(PORT, HOST);

services/router.js

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

function protected(req, res, next) {
    res.send('Here is the secret!');
}

router.route('/protected')
    .get(protected);

module.exports = router;

终端

[nodemon] restarting due to changes...
[nodemon] restarting due to changes...
[nodemon] starting `node index.js`
Listening on 127.0.0.1 3000
(node:29104) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): Error: Slash in host identifier
(node:29104) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

最佳答案

问题来自您通过 Mongoose 连接到 MongoDB。


短版:

您输入了错误的登录 URL:

mongoose.connect('mongodb://localhost:apiAuth');
                                      ^^^^^^^

我想你想写(或类似的东西):

mongoose.connect('mongodb://localhost:'+apiAuth);

这是一个 MongoDB 登录 URL 的示例:mongodb://127.0.0.1:27017/my_db。 或文档:Standard Connection String Format


加长版:

问题的解决方法与上述相同,但您应该自己找到它。 就我而言,我是这样进行的(因为我遇到了完全相同的问题,但信息量也一样多)。

  1. 隔离产生错误的代码:您可以简单地对部分代码进行注释,以确定哪个区域发生了崩溃。
  2. 在与 Mongoose 连接后添加 catch():mongoose.connect(...).catch((e) => { console.log(e); throw e ; }。这将直接指示相关行和一些附加信息。

这种技术在很多情况下都有效。

关于javascript - UnhandledPromiseRejectionWarning 错误 : Slash in host identifier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49682075/

相关文章:

javascript - Node 和 Express 找不到我的 js 文件夹

node.js - 在 VS Code 中使用 nodemon 调试 nestJS 应用程序

node.js - 无法停止由nodemon运行的服务器

javascript - 当进程崩溃时,Nodemon 丢失控制台输出

javascript - jQuery UI 和 Closure 编译器高级优化

javascript - WebRTC。信号已完成,但远程视频不工作

javascript - 应用程序中的新组件无法连接到 redux

javascript - 如何访问 MongoDB 查询中的子文档?

mongodb - Silex 和 MongoDB,其中 Silex Extension

php - 如何让 MongoDB 与 php 5.3.5 & wamp 一起使用?