1:var djConfig = {
modulePaths:{"customerModule":"../../customerModule"}
};
2:dojo.registerModulePath("customerModule","../../customerModule");
3:dojo.require("cusstomerModule.test");
//========
在使用2和3时能执行成功,但在使用1和3是,3这句会报错;
据说1和2是同样的功能,为什么使用23能行,使用13不行?
注册模块的不是从dojo.js开始的吗?“../../customerModule”,dojo.js所在目录的父目录的父目录的子目录customerModule
测试这段代码用的文件时直接在浏览器中打开的,所有地址是以file:///开头,测试2+3时,需要调整火狐的安全设置,同样的条件先,使用据说相同功能的代码,1+3就无法通过测试,求解释