Una vecchia domanda con risposte per lo più corrette, ma non molto efficienti. Questo è quello che propongo:
Creare una classe di base che contiene il metodo init () e i metodi di cast statici (per un singolo oggetto e un array). I metodi statici potrebbero essere ovunque; la versione con la classe base e init () consente successivamente facili estensioni.
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() { }
}
Meccanici simili (con assegnazione () ) sono stati menzionati nel post @ Adam111p. Solo un altro modo (più completo) per farlo. @Timothy Perez è critico nei confronti di assegnato () , ma imho che qui è del tutto appropriato.
Implementare una classe derivata (reale):
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);
}
}
}
Ora possiamo lanciare un oggetto recuperato dal servizio:
const area = ContentItem.castAs<SubjectArea>(docFromREST, SubjectArea);
Tutta la gerarchia degli oggetti SubjectArea avrà la classe corretta.
Un caso d'uso / esempio; creare un servizio angolare (di nuovo la classe base astratta):
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;
}
}
L'utilizzo diventa molto semplice; creare un servizio di area:
@Injectable()
export class SubjectAreaService extends BaseService<SubjectArea> {
path = 'area';
subClass = SubjectArea;
constructor(protected http: Http) { super(); }
}
Il metodo get () del servizio restituirà una Promessa di una matrice già lanciata come oggetti SubjectArea (intera gerarchia)
Ora diciamo, abbiamo un'altra classe:
export class OtherItem extends ContentItem {...}
La creazione di un servizio che recupera i dati e li lancia nella classe corretta è semplice come:
@Injectable()
export class OtherItemService extends BaseService<OtherItem> {
path = 'other';
subClass = OtherItem;
constructor(protected http: Http) { super(); }
}