我需要创建一个动态对象。我将所有这些对象存储在一个数组中。每个对象将具有一些属性和对象。创建对象后,我需要从中执行一个自动执行方法。我不能这样调用我的代码:obj.doSomething
,因为有些用户有2个对象,而其他用户有300个对象。
类似的东西:
class Select {
constructor(el,input){
this.el = el;
this.input = input
}
AutoExecture(){
// I need these function to execute immediately;
console.log(this.input);
}
}
答案 0 :(得分:0)
也许您想要这样的东西:
class Select {
constructor(el,input){
this.el = el;
this.input = input;
// This code will autoExecute when you construct an object
console.log(this.input);
}
}
您可以使用以下命令在控制台中运行此代码:
var a = new Select("hi", "bye");