search

Home  >  Q&A  >  body text

javascript - Why does import module syntax like import 'zone.js' work properly?

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

import ... from 


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

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-05-19 10:44:29

    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)
    
    那么,这样的模块,就不需要外部引用的时候去指定变量了。
    因为内部是自执行的。
    

    reply
    0
  • 某草草

    某草草2017-05-19 10:44:29

    The specifications are here, don’t make assumptions

    https://developer.mozilla.org...

    reply
    0
  • Cancelreply