文件名称:grubQuest:ASL集团项目
文件大小:116.57MB
文件格式:ZIP
更新时间:2024-08-03 04:10:32
JavaScript
##ASL ##grubQuest ------------ ####使用 Node 连接到 Mongo 如果没有安装 Mongo 驱动程序,请运行命令 npm 安装 mongodb 如何连接到数据库 // Retrieve var MongoClient = require ( 'mongodb' ) . MongoClient ; // Connect to the db MongoClient . connect ( "mongodb://localhost:27017/exampleDb" , function ( err , db ) { if ( ! err ) { console . log ( "We are connected." ) ; } else { console . log ( "Connection Failed."