1
讓我們假設我可以訪問下面的代碼:Require.js
http://localhost/web/src/js/myApp.js
現在我想從JavaScript的命令行模式下加載myApp.js
使用requirejs。
我確實嘗試了以下方法,但不起作用。有任何想法嗎?
requirejs.config({
baseUrl: "http://localhost/web/src/"
});
require("js/myApp"); // Error: Module name 'js/myApp' has not been loaded yet for context: _ http://requirejs.org/docs/errors.html#notloaded