Mencoba mengimplementasikan model Mongoose di Typecript. Menjelajahi Google hanya mengungkapkan pendekatan hibrid (menggabungkan JS dan TS). Bagaimana cara menerapkan kelas User, dengan pendekatan saya yang agak naif, tanpa JS?
Ingin dapat IUserModel tanpa bagasi.
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
tidak bisa menjadi kelas karena membuatnya adalah operasi asinkron. Itu harus membalas janji jadi Anda harus meneleponUser.create({...}).then...
.