1、项目目录下,下载第三方模块mongodb
cnpm install mongodb --save
2、检测是否连接成功
a、引入第三方模块mongodb并创建一个客户端 const MongoClient = require("mongodb").MongoClient; b、连接数据库 //连接地址 const url = "mongodb://127.0.0.1:27017"; //连接数据库的名称 const db_name = "sz1905"; //检测是否连接成功 MongoClient.connect(url,(err,client)=>{ console.log(err,client);//vs Code 终端打开 })
https://www.cnblogs.com/nanianqiming/p/9069760.html
原文地址:https://www.cnblogs.com/shenlan88/p/11070886.html
时间: 2024-10-10 04:21:21