我是ES6的新手。我正在尝试通过index.html
文件在浏览器中运行ES6网页。
index.html
内容如下。
<script type='traceur-runtime.js'></script>
<script src='app-build.js'></script>
我使用"Traceur --out newtraspiled.js oldmain.js"
使用Traceur编译器编译了代码。
,错误是:
“ReferenceError:未定义系统”。
如果我需要在System.js或runtime.js
中添加任何内容,请提供帮助它创建了最终的js文件,如下所示。
System.registerModule("module1.js", [], function() {
"use strict";
。 。
System.get("appl1.js" + '');
谢谢