ほぼ正しいが非常に効率的な回答ではない古い質問。これは私が提案するものです:
init()メソッドと静的キャストメソッド(単一のオブジェクトと配列用)を含む基本クラスを作成します。静的メソッドはどこにあってもかまいません。基本クラスと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投稿で言及されています。それを行うもう1つの(より完全な)方法です。@Timothy Perezはassign()に批判的ですが、ここでは完全に適切です。
派生した(実際の)クラスを実装します。
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オブジェクトのすべての階層に正しいクラスがあります。
ユースケース/例。Angularサービスを作成します(もう一度基本クラスを抽象化します):
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(); }
}
サービスのget()メソッドは、SubjectAreaオブジェクト(階層全体)として既にキャストされた配列のPromiseを返します
ここで、別のクラスがあるとします。
export class OtherItem extends ContentItem {...}
データを取得して正しいクラスにキャストするサービスの作成は、次のように簡単です。
@Injectable()
export class OtherItemService extends BaseService<OtherItem> {
path = 'other';
subClass = OtherItem;
constructor(protected http: Http) { super(); }
}