我正在使用 requirejs 加载 javascript 模块。
有没有办法在加载所有模块时触发事件?
如果是,如何?
问问题
1817 次
1 回答
3
从API中获取,您可以向主requirejs
函数添加回调:
requirejs(['jquery', 'canvas', 'app/sub'], callMe); // the second parameter is the callback
function callMe($, canvas, sub) {
console.log('everything is loaded');
// the libraries are now available as parameters in the same sequence as in the array
console.log('loaded', $, canvas, sub);
}
于 2012-08-06T10:58:06.710 回答