我正在考虑从Dart转到ES6,但Chrome似乎不支持对我来说至关重要的新导入语句。
我使用了此网站的(命名导出)代码:http://www.2ality.com/2014/09/es6-modules-final.html
我用
尝试了<module import="main"><module>
我收到错误:“意外的令牌导入”
任何信息,如果他们在最终版本发布前支持它?
代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>ES6</title>
</head>
<body bgcolor="blue">
<script type="module" src="main.js"></script>
</body>
</html>
main.js
import { square, diag } from 'lib';
console.log(square(11)); // 121
console.log(diag(4, 3)); // 5
lib.js:
export const sqrt = Math.sqrt;
export function square(x) {
return x * x;
}
export function diag(x, y) {
return sqrt(square(x) + square(y));
}
答案 0 :(得分:6)
Safari Tech Review 19,通过WebKit,现在支持模块。