我有app/owner/index.html
和app/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
哪里可能出错?