我有public/index.html
和src/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)
从另一个文件夹加载文件的语法应该是什么?
我有public/index.html
和src/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)
从另一个文件夹加载文件的语法应该是什么?
您可能还忘记了其他一些事情:
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.js
has 基本路径(这是您的 system.import 将从哪里开始;无论 index.html 文件在哪里。)
System.config({
"baseURL": "/",
"transpiler": "traceur",
"paths": {
"*": "*.js",
"github:*": "jspm_packages/github/*.js",
"npm:*": "jspm_packages/npm/*.js"
}
});
其中之一应该可以解决所有问题。我觉得是#2