Я пытаюсь получить student_id и дату (2 значения) в загруженном листе Excel. Я разрабатываю метод загрузки Excel в AngularJS. Мои данные поступают из внутреннего уровня Spring MicroServices Layer, и я инициализировал в файле component.ts
Data: {
rownum: null,
requestID: null,
student_id: string,
'date': Date,
'month_id': null
}[] = [];
в методе ::::::
ExcelDownload() {
const subHeader1 = worksheet.addRow(this.headerData);
subHeader1.getCell(4).value = this.Data(student_id. date); // I do want to retrieve student id and date on my cell (just 2 data)
}
Ошибка, которую я получаю ::::::
ERROR in src/app/buySummary/buySummary.component.ts(890,5): error TS2322: Type '{ rownum: null; requestID: null; student_id: string; 'date': Date; 'month_id': null; }[]' is not assignable to type 'CellValue'.
Type '{ rownum: null; requestID: null; student_id: string; 'erd': Date; 'month_id': null; }[]' is not assignable to type 'CellSharedFormulaValue'.
Property 'sharedFormula' is missing in type '{ rownum: null; requestID: null; student_id: string; 'date': Date; 'month_id': null; }[]'.