4

我有public/index.htmlsrc/app.js

在里面index.html我有以下system.js调用来加载app.js

<script>System.import('../src/app');</script>

它失败并出现以下错误:

GET https://registry.jspm.io/src/app.js 404 (Not Found)

从另一个文件夹加载文件的语法应该是什么?

4

1 回答 1

2

您可能还忘记了其他一些事情:

1)您必须导入system.js(使用jspm init自动安装)

2)你必须包括你的config.js(使用jspm init自动安装)

        <script src="../jspm_packages/system.js"></script>

        <script src="../config.js"></script>

        <script>
            System.import('client/index').catch(console.log.bind(console));
        </script>

3)查看我的导入如何显示“客户端/索引”,这意味着我的文件夹结构如下所示:

在此处输入图像描述

4) 现在最后是config.jshas 基本路径(这是您的 system.import 将从哪里开始;无论 index.html 文件在哪里。)

System.config({
  "baseURL": "/",
  "transpiler": "traceur",
  "paths": {
    "*": "*.js",
    "github:*": "jspm_packages/github/*.js",
    "npm:*": "jspm_packages/npm/*.js"
  }
});

其中之一应该可以解决所有问题。我觉得是#2

于 2015-06-03T03:32:09.037 回答