我有一個數組名稱菜,並有一個窗體。在表單提交後,數據推到盤上。我試圖用push方法將它添加到數組中,但它有錯誤。我如何用打字稿做到這一點? 非常感謝。 類對象。如何將對象推入與打字稿數組
export interface Dish {
id: number;
name: string;
image: string;
category: string;
label: string;
price: string;
featured: boolean;
description: string;
comments: Comment[];
}
我已經創建了類註釋中的對象名稱commentData,以便在提交後從表單接收所有數據。我還創建了Dish類的對象名稱菜。如何推動對象commentData反對dish.comments
export interface Comment {
rating: number;
comment: string;
author: string;
date: string;
}
我的git:https://github.com/zymethyang/Ionic_HKUST
請添加有關對象的代碼。 –
我已編輯我的帖子。請檢查頂部。謝謝。 –