javascript - Why does import module syntax like import 'zone.js' work properly?
巴扎黑
巴扎黑 2017-05-19 10:42:29
0
2
513

According to the specification, it should be in this form,

import ... from 


而且也不该有import后边跟字符串的语法呀.
巴扎黑
巴扎黑

reply all(2)
洪涛

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...

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!