使用 mongoose 和 node.js 的多态用户模型

Mud*_*med 4 polymorphic-associations mongoose mongodb node.js

我正在使用 mean.js 样板制作应用程序。它是一个以用户为雇主和候选人的招聘引擎。现在雇主和候选人应该存储为单独的文档,每个用户必须只有一个雇主或候选人,因为每个候选人或雇主都需要使用用户对象登录。

我用 postgresql 在 rails 中这样做:

## User
  belongs_to :profileable, :polymorphic => true

## Candidate and Employer
  has_one :user, :as => :profileable
Run Code Online (Sandbox Code Playgroud)

对于 mongoose,这是我到目前为止使用包“mongoose-schema-extend”所做的:

var extend = require('mongoose-schema-extend');

var UserSchema = new Schema({
    email: {
        type: String
    },
    password: {
        type: String
    }
}, { collection: 'users', discriminatorKey : '_type' });


var CandidateSchema = UserSchema.extend({
    Experience: {
        type: Number
    }
});

var EmployerSchema = user.user.extend({
    companyName: {
        type: String
    }
});
Run Code Online (Sandbox Code Playgroud)

上面的代码有效,但在 mongodb 中只为 _type 属性设置为候选人或雇主的用户创建文档。

我认为它应该做的是将候选人、雇主和用户存储为单独的文件。我后来必须将雇主与公司和工作联系起来。此外,我需要使用不同的标准分别查询候选人和雇主。

实现功能的最佳方法是什么?

Mud*_*med 6

可以使用 mognoose 鉴别器处理场景。

根据猫鼬文档:

鉴别器是一种模式继承机制。它们使您能够在同一个底层 MongoDB 集合之上拥有多个具有重叠模式的模型。

我找不到很多关于鉴别器的教程,但是,这里有一个我觉得有用的链接:http : //thecodebarbarian.com/2015/07/24/guide-to-mongoose-discriminators

谢谢