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

ES6模块化

时间:2018-06-23 00:00:45      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:def   under   port   TE   ack   text   prototype   AC   fun   

前言

语法:import export (注意有无default)
环境:babel编译ES6语法,模块化可用webpack 和rollup
ES6 Class本身是个语法糖,实际系统默认帮我们转成JS的构造函数
 

JS构造函数方式:

 
class Hello(x,y){
this.x=x;
this.y=y;
}
Hello.protoype.add=function(){
return this.x +this.y;
}
const m =new Hello(2,3);
console.log(m.add()); // 5
typeof Hello === "function" . //true
Hello === Hello.prototype.constructor //true
Hello.__proto__ === Hello.prototype //true
 

ES6书写方式:

 
export class Hello() {
constructor(x,y){
this.x = x;
this.y = y;
}
add() {
return this.x +this.y;
}
}
const m =new Hello(2,3);
console.log(m.add()); // 5
typeof Hello === "function" . //true
Hello === Hello.prototype.constructor //true
Hello.__proto__ === Hello.prototype //true

  

ES6模块化

标签:def   under   port   TE   ack   text   prototype   AC   fun   

原文地址:https://www.cnblogs.com/fuGuy/p/9215725.html

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