想知道是否可以在相同的功能範圍內同時使用define和require。通常是要求或定義,我如何都在同一範圍內?RequireJS - 在相同的功能範圍內同時使用define和require
define(["my/cart", "my/inventory"],
function(cart, inventory) {
//Define foo/title object in here.
}
);
require(["some/module", "a.js", "b.js"], function(someModule) {
//This function will be called when all the dependencies
//listed above are loaded. Note that this function could
//be called before the page is loaded.
//This callback is optional.
});
您通常不會顯式調用define。 'define'通常是作爲該模塊的'require'調用的結果執行的。所以你需要在你的代碼中require([「foo/title」])',這會導致模塊被加載/定義。 –