Genel sınıfta bir type parametresi yeni bir nesne oluşturmaya çalışıyorum. Benim sınıfımda View
, ben tür parametreleri olarak geçirilen Jenerik türden nesnelerin 2 listeleri var, ama marka çalıştığınızda new TGridView()
, typescript diyor ki:
'TGridView sembolü bulunamadı
Bu kod:
module AppFW {
// Represents a view
export class View<TFormView extends FormView, TGridView extends GridView> {
// The list of forms
public Forms: { [idForm: string]: TFormView; } = {};
// The list of grids
public Grids: { [idForm: string]: TGridView; } = {};
public AddForm(formElement: HTMLFormElement, dataModel: any, submitFunction?: (e: SubmitFormViewEvent) => boolean): FormView {
var newForm: TFormView = new TFormView(formElement, dataModel, submitFunction);
this.Forms[formElement.id] = newForm;
return newForm;
}
public AddGrid(element: HTMLDivElement, gridOptions: any): GridView {
var newGrid: TGridView = new TGridView(element, gridOptions);
this.Grids[element.id] = newGrid;
return newGrid;
}
}
}
Genel türden nesneler oluşturabilir miyim?
new()
type: {new(...args : any[]): T ;}