我有一些模塊,像這樣的加載定義無依賴到現在爲止還挺好。當它們通過絕對路徑
但是,當我試圖require
同一模塊的絕對路徑,我有我的依賴模塊未定義:
require(["http://example.com/js/hello.js"],
function(hello)
{
console.log("main",hello);
hello.say("main");
});
控制檯:
main undefined
Uncaught TypeError: Cannot read property 'say' of undefined // Oops!
爲什麼會這樣呢?
謝謝您的全面回答 – 2014-10-20 16:34:21