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 を使用する主な理由の 1 つです。
$(window).on('start.miniapp1', function () { require(["miniapp1"], function() { // Execute code for mini app 1 }); });