我有一些骨干集合,应该在加载时加载到我的应用程序中(引导数据)。这些数据是静态信息,用于填充列表、下拉列表等。
在我的路由器实例化之前加载这些数据并确保它们完全加载的最佳方法是什么
App.StaticCollections.contactTypes.fetch({}),
App.StaticCollections.documentTemplates.fetch({}),
App.StaticCollections.invoiceStatuses.fetch({}),
App.StaticCollections.estimateStatuses.fetch({}),
App.StaticCollections.currencies.fetch({})
App.Router = new MainRouter();
Backbone.history.start({
pushState: false,
root: App.Root
});