Tôi đang cố gắng tạo một đối tượng mới của một tham số loại trong lớp chung của tôi. Trong lớp của tôi View
, tôi có 2 danh sách các đối tượng thuộc loại chung được truyền dưới dạng tham số loại, nhưng khi tôi cố gắng thực hiện new TGridView()
, TypeScript nói:
Không thể tìm thấy biểu tượng 'TGridView
Đây là mã:
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;
}
}
}
Tôi có thể tạo các đối tượng từ một loại chung không?
new()
cần phải có - hoặc chung chung hơn:type: {new(...args : any[]): T ;}