mongoose 连接数据库操作 DeprecationWarning: current URL string parser is deprecated
Posted montai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongoose 连接数据库操作 DeprecationWarning: current URL string parser is deprecated相关的知识,希望对你有一定的参考价值。
moogoose 数据库操作是这样的:
//添加模块
const mongoose = require(‘mongoose‘);
//链接数据库{useNewUrlParser: true, useUnifiedTopology: true}
mongoose.connect(‘mongodb://localhost:27017/test‘, {useNewUrlParser: true, useUnifiedTopology: true});
//创建model, parse 很简单 只有一个name 值{ name: String }
const Cat = mongoose.model(‘Cat‘, { name: String });
//创建数据源
const kitty = new Cat({ name: ‘Zildjian‘ });
//插入数据
kitty.save().then(() => console.log(‘meow‘));
将红色字体部分,添加到代码中,就不会再出现下面的问题了
以上是关于mongoose 连接数据库操作 DeprecationWarning: current URL string parser is deprecated的主要内容,如果未能解决你的问题,请参考以下文章
mongoose 连接数据库操作 DeprecationWarning: current URL string parser is deprecated