在IIS上运行时,dojoConfig无法找到脚本资产

时间:2017-06-09 07:13:18

标签: javascript dojo esri

我有以下简化的项目结构

|
|-app.js
|-components
|  |
|  |-someModule.js

我的dojoConfig看起来像这样:

dojoConfig = {
     async: true,
     tlmSiblingOfDojo: false,
     packages: [{
        name: "components",
        location: '/components'
     }],
     cacheBust: true
};

我正在加载这样的文件:

define(["esri/geometry/webMercatorUtils",
        "esri/map",
        "components/CoordinateTransutils",
        "components/SettingsManager"
    ],
    function(WebMercatorUtils, Map, CoordinateTransUtils, SettingsManager) {

    }
);

本地我正在使用节点http-server进行开发,它可以正常工作。部署在IIS但是我收到的错误看起来像这样:

Failed to load resource: the server responded with a status of 404 (Not Found)
init.js:41 Error: scriptError
    at d (init.js:15)
    at HTMLScriptElement.<anonymous> (init.js:40)
(anonymous) @ init.js:41
init.js:41 src: dojoLoader
init.js:41 info: Array(2)0: "/components/CoordinateTransUtils.js?1496989376094"1: Eventlength: 2__proto__: Array(0)

手头的问题是:为什么它在本地开发服务器上工作,而在IIS上却没有?

1 个答案:

答案 0 :(得分:1)

我使用这样的东西:

var dojoConfig = (function () {
  var base = location.href.split("/");
  base.pop();
  base = base.join("/");
  return {
    async: true,
    isDebug: true,
    packages: [{
      name: "components",
      location: base + "/components"
    }]
  };
})();

并且在本地和IIS服务器上都可以正常工作。