English 中文(简体)
错误: 用户模式。 创建不是一个函数
原标题:Error: UserModel.create is not a function

我试图在我的POST路由处理器里 使用蒙戈斯制造一个新的文件。 我使用快递。 路由来定义我的路线 。

指数js

const express = require( express )
const app = express()
const userRouter = require( ./routes/user.js )
const mongoose = require( mongoose )
mongoose.connect( mongodb://127.0.0.1:27017/Users )

const userSchema = new mongoose.Schema({
    first_name: {
        type: String,
        required: true
    },
    last_name: {
        type: String,
        required: true
    },
    email: {
        type: String,
        required: true
    },
    gender: String
})
const User = new mongoose.model( user , userSchema)

app.use(express.urlencoded({ extended: false }))
app.use(express.json())

app.use( /user , userRouter)
app.listen(3000, () => console.log( Server Started! ))
module.exports = User;

用户js

const express = require( express )
const User = require( ../index )
const router = express.Router()

router.post( / , async (req, res) => {
    const newUser = await User.create({
        first_name: "John",
        last_name:  Doe ,
        email:  [email protected] ,
        gender:  Male 
    })
    res.send({ status:  success , created: newUser })
})
module.exports = router;

不过,我收到以下警告

获得不存在的财产在循环依赖范围内创造模块出口

和差错--

用户. create 不是一个函数

I assume it is saying User is undefined even though I have exported User model from 指数js (apparently).

密码有什么问题?

问题回答

这是一种依赖循环模块的情况。

例如, a.js 模块要求 b.js 模块, b.js 也要求相同的 a.js 模块。

在此情况下,模块索引.js 要求用户.js, 同时用户.js 也要求相同的索引.js。 从而导致周期依赖。

从技术上讲,这将在堆叠溢之前引起需要模块无限的调用。为了保持节点运行时间系统的弹性,Nodejs在第一次循环参考时通过返回第一个循环需要的未完成对象来打破这一无穷无尽的循环。

有关这个问题的更多详情,请查阅该职位上贴有的详细答复。

@jQueeny 评论了同一行, 请创建一个新模块, 并保留其中与用户图案有关的一切内容, 并导入到路由处理器模块中。 他还提供了细节, 请参考它 。

注:这是详细的答复,还有一份较短的版本。

<% 1> 这是循环模块依赖性的例子。

例如, a.js 模块要求 b.js 模块, b.js 也要求相同的 a.js 模块。

在此情况下,模块索引.js 要求用户.js, 同时用户.js 也要求相同的索引.js。 从而导致周期依赖。

从技术上讲,这将导致所需模块的无限调用,直到堆叠溢出

Nodejs 警告您所看到的这种情况, 然后它通过打破无限环绕而允许这种周期依赖性。 它在第一次环绕引用时, 返回第一个子循环的未完成对象, 从而打破了这种无穷无尽的环绕。 但是, 请注意, 这是绕过无限环绕的节点技术解决方案, 因此这个未完成的天体可能还没有达到其设计和编码完整的功能的阶段 。 下面引用的Norde 文档中可能也意味着相同 。

Careful planning is required to allow cyclic module dependencies to work correctly within an application.

此未完成对象是错误“ 用户. create is not a 函数” 的原因。 您可以在用户中通过控制台. log 测试和查看此未完成对象。 此处未完成对象为空对象。 正如我们所知, 空对象与空对象不同。

users.js
…
const User = require( ./user );
console.log(User);
….

Output:
{}

请注意, 虽然此情况下的未完成对象已输入空对象, 但不必总是如此。 它完全取决于这些模块的结构或编码方式。 这对于想要使用循环依赖代码的人来说非常重要。 因此, 请您可以参考下面的链接 1, 如 Nodejs 所记录的一个非常好的例子 。 请注意, 此示例中的未完成对象不是一个空对象。 它有一个属性。 但是, 它的值在不同阶段是不同的 。 这是在依赖这种编码之前要理解的点 。

@jQueeny 评论了同一行, 请创建一个新模块, 并保留其中与用户图案有关的一切内容, 并导入到路由处理器模块中。 他还提供了细节, 请参考它 。

另请参见链接2, 用于关于蒙戈斯天体如何进口及其连接由服务器处理的一般指导。

<强 > 链接

1 course





相关问题
Access DB Ref MongoDB

Whats the best way to access/query a DB Ref: UPDATE: users: name, groupref : {$ref:"groups",$id:"ObjectId ..." } } groups: name, topic, country,...,.. Assumption is that user belongs to only one ...

MongoDB nested sets

What re the best practices to store nested sets (like trees of comments) in MongoDB? I mean, every comment can have a parent comment and children-comments (answers). Storing them like this: { ...

MongoMapper and migrations

I m building a Rails application using MongoDB as the back-end and MongoMapper as the ORM tool. Suppose in version 1, I define the following model: class SomeModel include MongoMapper::Document ...

MongoDB takes long for indexing

I have the following setup: Mac Pro with 2 GB of RAM (yes, not that much) MongoDB 1.1.3 64-bit 8 million entries in a single collection index for one field (integer) wanted Calling .ensureIndex(...) ...

Storing and accessing large amounts of data

My application creates pieces of data that, in xml, would look like this: <resource url="someurl"> <term> <name>somename</name> <frequency>somenumber</...

热门标签