加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.js 376 Bytes
一键复制 编辑 原始数据 按行查看 历史
苏景哥哥 提交于 2023-03-16 22:05 . 基于node的express用户系统
const mongose = require('mongoose')
mongose.connect('mongodb://127.0.0.1:27017/boke')
.then(() => console.log('mongodb连接成功^-^...'))
.catch((e) => console.log('mongodb连接失败@-@...', e))
const userModel = require('./models/userModel')
async function aa() {
let res = await userModel.findOne({username:'163959246'})
console.log(res);
}
aa()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化