Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个非平凡的 JS 应用程序,它由许多小应用程序组成,是否可以使用 require.js 以惰性方式实际加载每个小应用程序的脚本?
是的,你可以,这也是你使用 require.js 的主要原因之一
$(window).on('start.miniapp1', function () { require(["miniapp1"], function() { // Execute code for mini app 1 }); });