According to the specification, it should be in this form,
import ... from 而且也不该有import后边跟字符串的语法呀.
import will eventually be converted into require form.
import ‘zone.js’ 会转换成 require('zone.js') 所以,你可以理解为,就是单纯的把 zone.js 引入到当前位置。 更深点讲就跟模块有关系 正常定义模块我们需要这样导出一些函数或者对象,给引用的模块使用: // alert.js export default function alert(){ alert(1) } // 那么接受的地方就需要 import alert from 'alert.js' // 导入 alert() // 使用 但是有些模块没有导出方法或者对象,比如这样的: // alert.js alert(1) 那么,这样的模块,就不需要外部引用的时候去指定变量了。 因为内部是自执行的。
The specifications are here, don’t make assumptions
https://developer.mozilla.org...
import will eventually be converted into require form.
The specifications are here, don’t make assumptions
https://developer.mozilla.org...