js中类的使用
1.js中创建类
class Base { //new 类的时候传的参数 constructor(option) { this.userId = option.userId this.key = option.key } empty(obj) { for (let key in obj) { return false; //非空 } return true; } // 使用为this.empty()
missCallNotify(){
this.empty({'a':'1'})
}
}
2.使用类中的方法
var indexPopup = new Base({ userId: '', key: '' }); indexPopup.missCallNotify()