gpt4 book ai didi

node.js - Mongoose 连接抛出警告

转载 作者:IT老高 更新时间:2023-10-28 23:19:10 26 4
gpt4 key购买 nike

我正在编写一个连接到 mongodb 的应用程序,并且像下面这样连接到服务器时收到如下警告:

Db.prototype.authenticate method will no longer be available in the next major release 3.x as MongoDB 3.6 will only allow auth against users in the admin db and will no longer allow multiple credentials on a socket. Please authenticate using MongoClient.connect with auth credentials.

我的代码如下所示

import mongoose from 'mongoose';
import config from './config';
mongoose.connect(config.db.uri);

在 config.js

const config = {
name: 'API',
version: '0.0.1',
env: process.env.NODE_ENV || 'development',
port: process.env.PORT || 3000,
base_url: process.env.BASE_URL || 'http://localhost:3000',
db: {
uri: 'mongodb://admin:harry123@127.0.0.1:27017/ai?authSource=admin',
},
}

export default config;

我正在使用 Node v8.0.0 和 mongoose 4.10.5

最佳答案

这是一个无害的警告和已知的 Mongoose issue .有关详细信息,请参阅 mongoose 线程,但从 mongoose 4.10.5 开始,没有已知的解决方法,它应该不会影响您的应用程序的功能。

关于node.js - Mongoose 连接抛出警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44422797/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com