
1 7anshuai 2018 年 10 月 22 日 可以使用 mongoose 依赖的 node-mongodb-native,例如: ``` const mOngoose= require('mongoose'); const cOnn= mongoose.createConnection('mongodb://localhost:27017/dbname'); const collection = conn.collection('users'); collection.find({}).toArray((err, users) => {console.log(users)}); ``` |
2 songsunli 2018 年 10 月 22 日 mongoose mongodb 教程看看 https://www.itying.com/goods-946.html |