如何使用以下结构填充数组:
ProjectsTimeSlots: Array<{ProjectName: string, Id: number, DefaultEmployeeId: number,
TimeSlots: Array<{
StartTime: Date, Duration: number
}>
}>;
json数据只有ProjectName, Id, DefaultEmployeeId
个字段。
有没有办法用lodash.js或没有它?