टाइपस्क्रिप्ट में एक Mongoose मॉडल को लागू करने की कोशिश कर रहा है। Google ने केवल हाइब्रिड दृष्टिकोण (JS और TS को मिलाकर) का खुलासा किया है। जेएस के बिना, मेरे बजाय भोले दृष्टिकोण पर उपयोगकर्ता वर्ग को लागू करने के बारे में कैसे जाना जाएगा?
सामान के बिना IUserModel में सक्षम होना चाहते हैं।
import {IUser} from './user.ts';
import {Document, Schema, Model} from 'mongoose';
// mixing in a couple of interfaces
interface IUserDocument extends IUser, Document {}
// mongoose, why oh why '[String]'
// TODO: investigate out why mongoose needs its own data types
let userSchema: Schema = new Schema({
userName : String,
password : String,
firstName : String,
lastName : String,
email : String,
activated : Boolean,
roles : [String]
});
// interface we want to code to?
export interface IUserModel extends Model<IUserDocument> {/* any custom methods here */}
// stumped here
export class User {
constructor() {}
}
User
एक वर्ग नहीं हो सकता क्योंकि एक बनाना एक async ऑपरेशन है। यह एक वादा वापस करना है तो आपको कॉल करना होगाUser.create({...}).then...
।