4

我有一个要求,我需要将模块列表传递给插件并让它加载模块并执行一些工作。如果我通过了一个我无法加载的模块,我应该报告一个错误并转到列表的其余部分。我被卡住了,因为我不知道如何从错误模块的 require 失败中恢复。我可以使用其他一些技术来满足这个要求吗?这是一个在没有我所有其他要求的情况下提炼问题的示例,我需要从加载 my/thing2 的失败中恢复:

define("my/thing", [], function() {
    return 'thing';
});
define("my/loader", [], function() {
    return {
        load: function(mid, require, callback) {
            console.log('inside load', arguments);

            // is there some way to recover when this require fails
            // or some other technique I can use here?
            try {
                require([mid], function(mod) {
                    console.log('inside require, mod=', mod);
                    callback(mod);
                });
            }
            catch (error) {
                // never gets here, when the require fails everything just stops
                console.log(error);
                callback("failed to load " + mid);
            }
        }
    }
});

require(["my/loader!my/thing"], function(loaded) {
    console.log('loaded', loaded);
});

require(["my/loader!my/thing2"], function(loaded) {
    console.log('loaded', loaded);
});
4

1 回答 1

1

如果您严格要求忽略无效或错误的模块并继续下一个,请在将它们扔进语句之前使用dojo/_base/lang::exists() :require

require(['/dojo/_base/lang', 'dojo/text!my/thing2'], function(lang, myThing2) {
    if(lang.exists(myThing2)) {
        //success
    } else {
        //failure
    }
});
于 2013-09-24T15:15:04.397 回答