0

我试图采用 JSPM 作为我的 Wordpress 开发包管理器,但我无法加载主应用程序文件。

这通常是用

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

我遇到的问题是 jspm 无法加载此文件,尝试在当前浏览器路径http://localhost:3000/shop/app.js的上下文而不是文件系统上下文中加载。

我试图调整一些 jspm 的配置选项,但无法让它工作。

你能在这里指出正确的方向吗?

4

1 回答 1

2

When running on file:/// URLs, you need to set your baseURL to the current path. This can be done with:

System.config({ baseURL: '.' });

Either in your configuration file or in the page itself. Note that when you load pages on different path levels, this baseURL path needs to be adjusted so it may be advisable to specify it in the page itself.

于 2015-02-21T14:59:51.020 回答