gpt4 book ai didi

javascript - 是否可以调用使用不同参数第二次自动执行的 x.Enter?

转载 作者:行者123 更新时间:2023-12-02 21:07:36 26 4
gpt4 key购买 nike

问题是如何使用不同的参数再次执行该函数。

// my class
let x = new class CB {

constructor() {
this.onEnter = function(callback) {
this.user = { user: 'Peter', isMember: true };
callback(this.user);
}
}
}


//my call

x.onEnter(function(user) {
console.log(user.user + " listed!");
});

// How to do a second call....how with different parameters every time?
console.log(x.onEnter);
...

最佳答案

与第一次的操作方式相同。您只需传递一个不同的函数即可。

    x.onEnter(function(user) {
console.log(user.user + " listed!");
});
x.onEnter(function(user) {
console.log(user.user + " twisted!");
});

关于javascript - 是否可以调用使用不同参数第二次自动执行的 x.Enter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61186586/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com