1、ES7中的await和async:配合promise理解,参考 http://blog.csdn.net/sinat_17775997/article/details/74982484
2、关于js中的全局变量:
(1)creator中启动程序时,会遍历所有js文件。如果将某个类定义为window的属性,它就成了一个全局的模块,可在任意地方使用;
(2)creator中还有一个‘将脚本导入为插件’的功能,导入后的脚本也就成了全局的,不需要import了。
(3)非全局的模块,就需要import或require导入后才能使用。
3、关于import与require:https://www.cnblogs.com/ariel-zhang/p/7127714.html,如:
(1)import {firstName, lastName, year} from './profile';
(2)let { stat, exists, readFile } = require('fs');
网友评论