SystemJs:从不同目录加载文件

时间:2016-08-26 16:18:08

标签: javascript systemjs

我有app/owner/index.htmlapp/shared/order.js。我尝试使用SystemJs导入order.js。在index.html我有以下内容:

<script>System.import('app/shared/order.js').catch(function(err) {console.error("Got an error. Here it is: " + err);});

但是当我尝试加载页面时,我收到以下错误

Got me an error. Here it is: Error: Error: XHR error (404 Not Found) loading http://localhost:3000/app/shared/order.js

如果我将order.js移动app/owner/order.js并在index.html中使用以下内容

<script>System.import('app/owner/order.js').catch(function(err) {console.error("Got an error. Here it is: " + err);});

它有效。那么app/shared/order.js哪里可能出错?

0 个答案:

没有答案