Çoğunlukla doğru fakat çok etkili olmayan cevapları olan eski bir soru. Ben bunu teklif ediyorum:
İnit () yöntemi ve statik döküm yöntemleri (tek bir nesne ve dizi için) içeren bir temel sınıf oluşturun . Statik yöntemler herhangi bir yerde olabilir; temel sınıf ve init () içeren sürüm daha sonra kolay uzantılara izin verir.
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() { }
}
Benzer mekanik ( atama () ile ) @ Adam111p yazısında belirtilmiştir. Bunu yapmanın başka (daha eksiksiz) bir yolu. @Timothy Perez, ata () işlevini eleştirir , ancak burada tamamen uygundur.
Türetilmiş (gerçek) bir sınıf uygulayın:
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);
}
}
}
Şimdi hizmetten alınan bir nesneyi atabiliriz:
const area = ContentItem.castAs<SubjectArea>(docFromREST, SubjectArea);
Tüm SubjectArea nesneleri hiyerarşisi doğru sınıfa sahip olacaktır.
Bir kullanım örneği / örneği; Açısal bir hizmet oluşturun (yine soyut temel sınıf):
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;
}
}
Kullanımı çok basit hale gelir; Alan hizmeti oluşturma:
@Injectable()
export class SubjectAreaService extends BaseService<SubjectArea> {
path = 'area';
subClass = SubjectArea;
constructor(protected http: Http) { super(); }
}
hizmetin get () yöntemi, SubjectArea nesneleri (tüm hiyerarşi) olarak zaten yayınlanmış bir dizinin Sözünü döndürür
Şimdi söyle, başka bir sınıfımız var:
export class OtherItem extends ContentItem {...}
Verileri alan ve doğru sınıfa atan bir hizmet oluşturmak şu kadar basittir:
@Injectable()
export class OtherItemService extends BaseService<OtherItem> {
path = 'other';
subClass = OtherItem;
constructor(protected http: Http) { super(); }
}