Pertanyaan lama dengan sebagian besar jawaban yang benar, tetapi tidak terlalu efisien. Inilah yang saya usulkan:
Buat kelas dasar yang berisi metode init () dan metode cast statis (untuk objek tunggal dan array). Metode statis bisa di mana saja; versi dengan kelas dasar dan init () memungkinkan ekstensi yang mudah sesudahnya.
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() { }
}
Mekanika serupa (dengan assign () ) telah disebutkan dalam pos @ Adam111p. Hanya cara lain (lebih lengkap) untuk melakukannya. @Timothy Perez kritis terhadap assign () , tetapi jika itu sepenuhnya sesuai di sini.
Menerapkan kelas turunan (nyata):
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);
}
}
}
Sekarang kita bisa melemparkan objek yang diambil dari layanan:
const area = ContentItem.castAs<SubjectArea>(docFromREST, SubjectArea);
Semua hierarki objek SubjectArea akan memiliki kelas yang benar.
Sebuah use case / example; buat layanan Angular (kelas dasar abstrak lagi):
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;
}
}
Penggunaannya menjadi sangat sederhana; buat layanan Area:
@Injectable()
export class SubjectAreaService extends BaseService<SubjectArea> {
path = 'area';
subClass = SubjectArea;
constructor(protected http: Http) { super(); }
}
get () metode layanan akan mengembalikan Janji array yang sudah dilemparkan sebagai objek SubjectArea (seluruh hierarki)
Sekarang katakanlah, kita memiliki kelas lain:
export class OtherItem extends ContentItem {...}
Membuat layanan yang mengambil data dan melakukan cast ke kelas yang benar adalah sesederhana:
@Injectable()
export class OtherItemService extends BaseService<OtherItem> {
path = 'other';
subClass = OtherItem;
constructor(protected http: Http) { super(); }
}