es6 import export 何时能被浏览器支持?
目前各大浏览器都不支持es6 的 import export (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import )
搜了一圈,找不到答案。不知道有没有人了解?
4 回复
es5现在浏览器都还支持不全呢,es6至少要10年以后
http://kangax.github.io/compat-table/es6/
模块应该是ES2015 最难实现的特性, 无论浏览器端还是node环境都有各自的加载兼容问题.
浏览器端的话最近刚将 <script type="module">
这样的形式加入到 HTML 规范, 需要等浏览器实现, 见 https://blog.whatwg.org/js-modules https://bugs.chromium.org/p/chromium/issues/detail?id=594639
其他相关链接:
https://github.com/nodejs/node-eps/issues/13
node都还没实现呢