我正在尝试使用marionette插件组合骨干应用程序,并且在初始化程序按照我预期的方式工作时遇到一些麻烦。我有以下代码:
var MyApp = new Backbone.Marionette.Application();
MyApp.addRegions({
region1 : '#div1',
region2 : '#div2'
});
MyApp.Resources = { };
MyApp.bind('initialize:before', function (options) {
// display a modal dialog for app initialization
options.initMessageId = noty({
text : 'Initializing MyApp (this should only take a second or two)',
layout : 'center',
speed : 1,
timeout : false,
modal : true,
closeOnSelfClick : false
});
});
MyApp.addInitializer(function (options) {
$.ajax({
url: options.apiUrl + '/my-app-api-module',
type: 'GET',
contentType: 'application/json; charset=utf-8',
success: function (results) {
MyApp.Resources.urls = results;
console.log(MyApp.Resources.urls); // <- THIS returns an object
}
});
});
MyApp.bind('initialize:after', function (options) {
// initialization is done...close the modal dialog
if (options.initMessageId) {
$.noty.close(options.initMessageId);
}
if (Backbone.history) {
Backbone.history.start();
}
console.log(MyApp.Resources.urls); // <- THIS returns 'undefined' BEFORE the console.log in the initializer above
});
请注意,在上面的代码中,我有两个console.log
调用,一个在初始化程序中,一个在initialize:after
处理程序中。两者都记录相同的对象属性。正如您所看到的,我所遇到的是console.log
处理程序中的initialize:after
调用在之前被调用之前的success
处理程序初始化。我意识到这是因为初始化程序中有一个异步调用...我需要知道的是,在应用程序中执行任何其他操作之前,如何确保初始化程序中的所有异步代码都已完成?这有一个很好的模式吗?我没有在文档中找到任何指示如何正确处理此问题的内容。
感谢。
答案 0 :(得分:7)
如何在应用程序中执行任何其他操作之前确保初始化程序中的所有异步代码都已完成?
请勿使用initialize:after
事件。而是从success
调用触发您自己的事件,然后绑定您的应用启动代码。
MyApp.addInitializer(function (options) {
$.ajax({
url: options.apiUrl + '/my-app-api-module',
type: 'GET',
contentType: 'application/json; charset=utf-8',
success: function (results) {
MyApp.Resources.urls = results;
// trigger custom event here
MyApp.vent.trigger("some:event:to:say:it:is:done")
}
});
});
// bind to your event here, instead of initialize:after
MyApp.vent.bind('some:event:to:say:it:is:done', function (options) {
// initialization is done...close the modal dialog
if (options.initMessageId) {
$.noty.close(options.initMessageId);
}
if (Backbone.history) {
Backbone.history.start();
}
console.log(MyApp.Resources.urls);
});
这样您就可以在异步内容完成后触发事件,这意味着在初始异步调用返回并设置完成后,处理程序中的代码才会运行。
答案 1 :(得分:0)
我使用jQuery deffereds为start方法写了一个覆盖,因此您可以指定Async初始化器,如身份验证。然后start方法等待直到解决所有延迟,然后完成开始。
我用新的同步回调类替换了牵线木偶回调,所以我可以在应用程序中使用常规方法调用。看看我的解决方案,看看是否有帮助。 https://github.com/AlexmReynolds/Marionette.Callbacks
答案 2 :(得分:0)
这可用于在应用程序的其余部分开始之前完成任务。 检查documentation。
// Create our Application
var app = new Mn.Application();
// Start history when our application is ready
app.on('start', function() {
Backbone.history.start();
});
// Load some initial data, and then start our application
loadInitialData().then(app.start);