กำลังพยายามใช้แบบจำลองพังพอนใน typescript การกำจัดสิ่งสกปรกใน Google ได้เปิดเผยเฉพาะแนวทางแบบผสมผสาน (รวม JS และ TS) เราจะดำเนินการอย่างไรเกี่ยวกับการใช้คลาส User บนแนวทางที่ค่อนข้างไร้เดียงสาของฉันโดยไม่มี JS?
ต้องการ 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...
.