#filename test.js
var mongoose = require("mongoose");
console.log(mongoose)
mongoose.connect("mongodb://127.0.0.1/haikou", { useNewUrlParser: true, useUnifiedTopology: true });
mongoose.connection.once("open",function(){
console.log("ok")
})
当我在终端中使用“ node test.js”运行以上代码时,它运行正常。
但是,当我使用create-react-app
构建的脚手架运行代码时,发现“
TypeError: Cannot read property 'connect' of undefined'
。
它出什么问题了?
也许与webpack
或webpack-dev-server
???