码迷,mamicode.com
首页 > 其他好文 > 详细

ES2015 import & export

时间:2017-04-29 13:40:46      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:mozilla   mod   asc   tps   使用   import   cti   lan   not   

ES2015 import

  The import statement is used to import functions, objects or primitives that have been exported from an external module, another script, etc.

  用于导出已经声明为export的function、object。

  注意不存在import * from ‘module-name‘的用法,只能是import * as name from ‘module-name‘。

  注意导入export default,应当使用 import name from ‘module-name‘

  注意导入export,应该加上{},如import {name} from ‘module-name‘

ES2015 export

  The export statement is used to export functions, objects or primitives from a given file (or module).

参考:

1、https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import

2、https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export

ES2015 import & export

标签:mozilla   mod   asc   tps   使用   import   cti   lan   not   

原文地址:http://www.cnblogs.com/tekkaman/p/6784997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!