2
我對requirejs 2.0感到困惑。在我使用!order標籤之前,現在javascripts不按順序加載(除非我運行優化)。顯然這個orderjs支持被刪除了requirejs按順序加載內容
如果我有5個腳本,並且我需要前三個按順序加載,那麼我將如何與shim
一起使用?
我是做
require([
"order!libraries/file1",
"order!libraries/file2",
"order!includes/file3",
"libraries/file4",
"libraries/file5"
],
function(){
console.log("All done. Everything loaded. Now we can start the app");
});
之前,我現在該如何翻譯這requirejs 2?
http://stackoverflow.com/a/10842492/1217408 – TheZ