คำถามเก่าที่มีคำตอบส่วนใหญ่ถูกต้อง แต่ไม่มีประสิทธิภาพมาก นี่คือสิ่งที่ฉันเสนอ:
สร้างคลาสพื้นฐานที่มีเมธอดinit ()และเมธอด cast แบบสแตติก (สำหรับอ็อบเจ็กต์เดี่ยวและอาร์เรย์) วิธีการคงที่อาจเป็นที่ใดก็ได้; รุ่นที่มีคลาสฐานและinit ()ช่วยให้สามารถขยายได้ง่ายในภายหลัง
export class ContentItem {
// parameters: doc - plain JS object, proto - class we want to cast to (subclass of ContentItem)
static castAs<T extends ContentItem>(doc: T, proto: typeof ContentItem): T {
// if we already have the correct class skip the cast
if (doc instanceof proto) { return doc; }
// create a new object (create), and copy over all properties (assign)
const d: T = Object.create(proto.prototype);
Object.assign(d, doc);
// reason to extend the base class - we want to be able to call init() after cast
d.init();
return d;
}
// another method casts an array
static castAllAs<T extends ContentItem>(docs: T[], proto: typeof ContentItem): T[] {
return docs.map(d => ContentItem.castAs(d, proto));
}
init() { }
}
กลศาสตร์ที่คล้ายกัน (ที่มีassign () ) ถูกกล่าวถึงใน @ Adam111p โพสต์ อีกวิธีหนึ่ง (สมบูรณ์มากขึ้น) ที่จะทำ @ Timothy Perez สำคัญยิ่งสำหรับมอบหมาย ()แต่ imho มันเหมาะสมอย่างเต็มที่ที่นี่
ใช้คลาสที่ได้รับ (จริง):
import { ContentItem } from './content-item';
export class SubjectArea extends ContentItem {
id: number;
title: string;
areas: SubjectArea[]; // contains embedded objects
depth: number;
// method will be unavailable unless we use cast
lead(): string {
return '. '.repeat(this.depth);
}
// in case we have embedded objects, call cast on them here
init() {
if (this.areas) {
this.areas = ContentItem.castAllAs(this.areas, SubjectArea);
}
}
}
ตอนนี้เราสามารถโยนวัตถุที่ดึงมาจากบริการ:
const area = ContentItem.castAs<SubjectArea>(docFromREST, SubjectArea);
ลำดับชั้นของวัตถุSubjectArea ทั้งหมดจะมีคลาสที่ถูกต้อง
กรณีใช้งาน / ตัวอย่าง; สร้างบริการเชิงมุม (คลาสฐานนามธรรมอีกครั้ง):
export abstract class BaseService<T extends ContentItem> {
BASE_URL = 'http://host:port/';
protected abstract http: Http;
abstract path: string;
abstract subClass: typeof ContentItem;
cast(source: T): T {
return ContentItem.castAs(source, this.subClass);
}
castAll(source: T[]): T[] {
return ContentItem.castAllAs(source, this.subClass);
}
constructor() { }
get(): Promise<T[]> {
const value = this.http.get(`${this.BASE_URL}${this.path}`)
.toPromise()
.then(response => {
const items: T[] = this.castAll(response.json());
return items;
});
return value;
}
}
การใช้งานง่ายมาก สร้างบริการพื้นที่:
@Injectable()
export class SubjectAreaService extends BaseService<SubjectArea> {
path = 'area';
subClass = SubjectArea;
constructor(protected http: Http) { super(); }
}
ได้รับ ()วิธีการของการบริการจะกลับมาสัญญาของอาร์เรย์แล้วเป็นวัตถุSubjectArea (ลำดับชั้นทั้งหมด)
ตอนนี้พูดว่าเรามีคลาสอื่น:
export class OtherItem extends ContentItem {...}
การสร้างบริการที่ดึงข้อมูลและปลดเปลื้องไปยังคลาสที่ถูกต้องนั้นง่ายเหมือน:
@Injectable()
export class OtherItemService extends BaseService<OtherItem> {
path = 'other';
subClass = OtherItem;
constructor(protected http: Http) { super(); }
}