简体   繁体   English

无法实例化猫鼬模式:“对象不是函数”

[英]Cannot instantiate mongoose schema: “Object is not a function”

In my routes/index.js file, I have: 在我的route / index.js文件中,我有:

var mongoose = require('mongoose/');

... ...

var schema = mongoose.Schema;
var user_details = new schema(
  { 
  username: String, 
  password: String
  },
  {
  collection: 'userInfo'
  });

router.post('/newuser', function(request, response, next)
  {
  var newuser = new user_details(
    {
    'username': request.params.username,
    'password': request.params.password
    });
  newuser.save();
  response.redirect('/');
  });

This is giving the error below. 这是下面的错误。 The 48:17 location is the "new" in the "var newuser = new user_details(" line: 48:17位置是“ var newuser = new user_details(”行中的“ new”:

object is not a function

TypeError: object is not a function
    at module.exports (/Users/jonathan/server/routes/index.js:48:17)
    at Layer.handle [as handle_request] (/Users/jonathan/server/node_modules/express/lib/router/layer.js:82:5)
    at next (/Users/jonathan/server/node_modules/express/lib/router/route.js:110:13)
    at Route.dispatch (/Users/jonathan/server/node_modules/express/lib/router/route.js:91:3)
    at Layer.handle [as handle_request] (/Users/jonathan/server/node_modules/express/lib/router/layer.js:82:5)
    at /Users/jonathan/server/node_modules/express/lib/router/index.js:267:22
    at Function.proto.process_params (/Users/jonathan/server/node_modules/express/lib/router/index.js:321:12)
    at next (/Users/jonathan/server/node_modules/express/lib/router/index.js:261:10)
    at Function.proto.handle (/Users/jonathan/server/node_modules/express/lib/router/index.js:166:3)
    at router (/Users/jonathan/server/node_modules/express/lib/router/index.js:35:12)
    at Layer.handle [as handle_request] (/Users/jonathan/server/node_modules/express/lib/router/layer.js:82:5)
    at trim_prefix (/Users/jonathan/server/node_modules/express/lib/router/index.js:302:13)
    at /Users/jonathan/server/node_modules/express/lib/router/index.js:270:7
    at Function.proto.process_params (/Users/jonathan/server/node_modules/express/lib/router/index.js:321:12)
    at next (/Users/jonathan/server/node_modules/express/lib/router/index.js:261:10)
    at SessionStrategy.strategy.pass (/Users/jonathan/server/node_modules/passport/lib/middleware/authenticate.js:318:9)

My understanding of "object is not a function" is that some object has (attemptedly) been called as a function, such as {0: false, 1: true}() . 我对“对象不是函数”的理解是(尝试地)将某些对象称为函数,例如{0: false, 1: true}() But can you explain what in my code is triggering my error? 但是您能解释一下我的代码中触发我的错误的原因吗?

--UPDATE-- --UPDATE--

I think I'm doing what was suggested in the answer's first comment. 我认为我正在做答案的第一条评论中建议的操作。 The error I'm getting now is: 我现在得到的错误是:

/Users/jonathan/node_modules/mongoose/lib/index.js:340
      throw new mongoose.Error.OverwriteModelError(name);
            ^
OverwriteModelError: Cannot overwrite `userInfo` model once compiled.

The triggering line of code is: 代码的触发行是:

var user = mongoose.model('userInfo', user_details);

The error is being triggered because a schema cannot be instantiated and used as a model. 由于无法实例化架构并将其用作模型,因此触发了错误。 You need to make it a mongoose model first with mongoose.model('DocumentName', document) . 您需要首先使用mongoose.model('DocumentName', document)使其成为猫鼬模型

For example (I'm copypasta'ing part of this from a current project, so it's ES6): 例如(我从当前项目中复制部分内容,因此是ES6):

// user.js
import mongoose from 'mongoose'

let userSchema = mongoose.Schema({
    password: String,
    username: String
})

userSchema.methods.setUp = function (username, password) {
    this.username = username
    this.password = password
    return this
}

export let User = mongoose.model('User', userSchema)
export default User

// routes.js
import { User } from './models/user'

router.post('/newuser', function (req, res) {
    new User()
    // note the `setUp` method in user.js
    .setUp(req.params.username, req.params.password)
    .save()
    // using promises; you can also pass a callback
    // `function (err, user)` to save
    .then(() => { res.redirect('/') })
    .then(null, () => /* handle error */ })
})

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

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