1

我正在尝试使用跟踪器。但是,当我想加载一个模块时,我收到一个错误,指出它不成功。我的代码基于其关于模块的文档中提供的示例跟踪器。

这是main.html:

<script src="https://google.github.io/traceur-compiler/bin/traceur.js"></script>
<script src="https://google.github.io/traceur-compiler/src/bootstrap.js"></script>
<script>
     System.traceurOptions = { experimental: true } 
</script>

<script type="module" src="ProfileView.js"></script>

和加载的模块:

// ProfileView.js
import {firstName, lastName, year} from './Profile.js';

function setHeader(element) {
  element.textContent = firstName + ' ' + lastName;
}
// rest of module

// Profile.js
export var firstName = 'David';
export var lastName = 'Belle';
export var year = 1973;

我在 Chrome 中收到以下错误:

XMLHttpRequest 无法加载 file:///C:/Code/Tests/Traceur/ProfileView.js。跨源请求仅支持协议方案:http、data、chrome、chrome-extension、https、chrome-extension-resource。

WebPageTranscoder 加载文件失败:///C:/Code/Tests/Traceur/ProfileView.js

未捕获的 NetworkError:无法在“XMLHttpRequest”上执行“发送”:无法加载“file:///C:/Code/Tests/Traceur/ProfileView.js”。

我知道你不能通过文件系统发出 xhr 请求,但我看过一些教程,其中代码的结构与我的相似,并且可以在那里工作......

我可能做错了什么?

4

1 回答 1

1

您无法使用 xhr 访问文件系统,您应该通过运行本地网络服务器通过 http 打开这些页面。如果你真的想启用文件系统访问,你可以: http: //www.chrome-allow-file-access-from-file.com/

即你启动 chrome chrome.exe --allow-file-access-from-files

于 2015-08-02T18:01:07.593 回答