【发布时间】:2019-03-15 00:27:29
【问题描述】:
在我的应用程序中,我有一个带有处理所有数据库条目的休息接口的服务器。当用户登录到应用程序时,应加载所有用户数据并将其从数据库模型映射到可用模型。不同的是,数据库模型只保存其子对象的 id,而普通模型直接继承其子对象。因此,为了通过来自数据库的 http 请求加载所有对象并映射它们,我构建了这个:
class SomeClass {
private loadProjectData(projectId: string): void {
let s: Sheet;
let d: Dashboard;
this.databaseService.getDocument("Projects", projectId).subscribe(
(project: ProjectDB) => {
this.project = new Project(project.id, project.name, project.theme, []);
for (const dash of project.dashboards) {
this.databaseService
.getDocument("Dashboards", dash)
.subscribe((dashboard: DashboardDB) => {
d = new Dashboard(dashboard.id, dashboard.name, []);
for (const shee of dashboard.sheets) {
this.databaseService
.getDocument("Sheets", shee)
.subscribe((sheet: SheetDB) => {
s = new Sheet(sheet.id, sheet.name, []);
for (const wid of sheet.widgets) {
this.databaseService
.getDocument("Widgets", wid)
.subscribe((widget: WidgetDB) => {
// TODO check widget type
s.widgets.push(
new Widget(
widget.id,
widget.name,
widget.position,
widget.isDeveloped,
widget.type,
),
);
this.dataService.changeProjectData(this.project);
});
}
});
}
d.sheets.push(s);
this.dataService.changeProjectData(this.project);
});
this.project.dashboards.push(d);
this.dataService.changeProjectData(this.project);
}
console.log("Project", this.project);
this.router.navigate(["dashboard"]);
},
err => {
console.log("Error loading project data from database ", err);
},
);
}
}
代码遍历每个层次结构:项目 -> 仪表板 -> 表格 -> 小部件。这个想法是,当每个较低的层次元素被加载时,它会被推送到上层的母元素。但是在执行代码时,除了项目之外的所有对象都是未定义的。有谁知道如何解决这个问题?提前致谢。
【问题讨论】:
标签: javascript typescript subscription