简体   繁体   English

猫鼬:TypeError:'mongooseSchemahere'不是一个函数

[英]Mongoose: TypeError: 'mongooseSchemahere' is not a function

I have the following mongoose Schema setup in models/user.js: 我在models / user.js中有以下猫鼬模式设置:

const mongoose = require('mongoose');

const userSchema = mongoose.Schema({

    loginId: String,
    firstname: String,
    lastname: String,
    eMail: String,
    password: String,
    active: Boolean

});

module.exports = userSchema; 

In my main app.js I have the following code: 在我的主要app.js中,我有以下代码:

const mongoose = require('mongoose');
var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/";

MongoClient.connect(url,  {
  useUnifiedTopology: true,
  useNewUrlParser: true,
  },function(err, db) {
  if (err) throw err;
  var dbo = db.db("db");
  dbo.collection("db").find({}).toArray(function(err, result) {
    if (err) throw err;
    console.log(result);
    db.close();
  });
}); 

let userSchema = require('./models/user.js');
// Get single user
app.get('/user/:id', function (req, res) {
  userSchema.findById(req.params.id, (error, data) => {
    if (error) {
      return next(error)
    } else {
      res.json(data)
    }
  })
})

I get the error which is in the title (just replace mongooseSchemahere with userSchema). 我得到标题中的错误(只需将mongooseSchemahere替换为userSchema)。 What did I do wrong? 我做错什么了? I tried putting the userSchema declaration in different places, it did not help.. 我尝试将userSchema声明放在不同的位置,但没有帮助。

You need to export the model and not the schema. 您需要导出模型而不是模式。

const mongoose = require('mongoose');

const userSchema = mongoose.Schema({
    loginId: String,
    firstname: String,
    lastname: String,
    eMail: String,
    password: String,
    active: Boolean

});

module.exports =  mongoose.model('user', userSchema);

Now you can do things like: 现在您可以执行以下操作:

let User = require('./models/user.js');
// Get single user
app.get('/user/:id', function (req, res) {
  User.findById(req.params.id, (error, data) => {
    if (error) {
      return next(error)
    } else {
      res.json(data)
    }
  })
})

You need to use mongoose.connect to work with mongoose models. 您需要使用mongoose.connect来使用mongoose模型。

Make these changes: 进行以下更改:

1-) Create the user model like this and export: 1-)像这样创建用户模型并导出:

const mongoose = require("mongoose");

const userSchema = new mongoose.Schema({
  loginId: String,
  firstname: String,
  lastname: String,
  eMail: String,
  password: String,
  active: Boolean
});

module.exports = mongoose.model("User", userSchema);

2-) Change your App.js to connect your db with mongoose.connect: 2-)更改App.js以将数据库与mongoose.connect连接:

const express = require("express");
const app = express();
const mongoose = require("mongoose");
const User = require("./models/user");
const url = "mongodb://localhost:27017/mydb";

const port = process.env.PORT || 3000;

app.use(express.json());

mongoose
  .connect(url, {
    useNewUrlParser: true,
    useUnifiedTopology: true
  })
  .then(() => {
    app.listen(port, () => {
      console.log(`App running on port ${port}...`);
    });
  })
  .catch(error => console.log(error));

Now you can create a user like this: 现在您可以创建一个这样的用户:

app.post("/user", function(req, res, next) {
  console.log("Req body:", req.body);
  User.create(req.body)
    .then(result => {
      console.log({ result });
      res.send(result);
    })
    .catch(err => {
      console.log(err);
      res.status(500).send("something went wrong");
    });
});

To retrieve the user by _id: 要通过_id检索用户,请执行以下操作:

app.get("/user/:id", function(req, res, next) {
  User.findById(req.params.id, (error, data) => {
    if (error) {
      return next(error);
    } else {
      res.json(data);
    }
  });
});

To retrieve a user by firstname: (if you want to find all users by firstname change findOne to find.): 要按名字检索用户:(如果要按名字查找所有用户,请更改find​​One来查找。):

app.get("/user/firstname/:firstname", function(req, res, next) {
  console.log(req.params.firstname);
  User.findOne({ firstname: req.params.firstname }, (error, data) => {
    if (error) {
      return next(error);
    } else {
      res.json(data);
    }
  });
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM