Fork me on github

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()

 

posted @ 2021-12-28 15:22  我の前端日记  阅读(115)  评论(0编辑  收藏  举报
Copyright © 2021 LinCangHai
Powered by .NET 5.0 on Kubernetes