使用typescript的Mongoose模式/模型

时间:2014-01-24 20:10:12

标签: mongoose typescript

我使用此声明:https://github.com/vagarenko/mongoose-typescript-definitions

以下代码工作正常,但有两个问题:

import M = require('mongoose');

var userSchema:M.Schema = new M.Schema(
    {
        username: String,
        password: String,
        groups: Array
    }, { collection: 'user' });


export interface IUser extends M.Document {
    _id: string;
    username:string;
    password:string;
    groups:Array<string>;

    hasGroup(group:string);
}

userSchema.methods.hasGroup = function (group:string) {
    for (var i in this.groups) {
        if (this.groups[i] == group) {
            return true;
        }
    }
    return false;
};

export interface IUserModel extends M.Model<IUser> {
    findByName(name, cb);
}

// To be called as UserModel.findByName(...)
userSchema.statics.findByName = function (name, cb) {
    this.find({ name: new RegExp(name, 'i') }, cb);
}

export var UserModel = M.model<IUser>('User', userSchema);

问题1:较小的问题是,函数IUser.hasGroup不能在任何typescript类中声明,但至少它是typechecked。

问题2:更糟糕。我定义了模型方法findByName,并且在js中这将是有效的:UserModel.findByName(...)但我无法将export var UserModel类型转换为IUserModel。所以我无法对模型函数进行任何类型的检查。

1 个答案:

答案 0 :(得分:8)

您应该能够说出以下内容:

export var UserModel = <IUserModel>M.model('user', userSchema);

然后,当您引用UserModel时,您将拥有适当的类型检查/智能感知。