如何传递多个参数到一个javascript回调函数

如何传递多个参数到一个javascript回调函数

本文介绍了如何传递多个参数到一个javascript回调函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

JavaScript代码:

Javascript code:

function doSomething(v1,v2){ //blah; }

function SomeClass(callbackFunction,callbackFuncParameters(*Array*))={
   this.callback = callbackFunction;
   this.method = function(){
       this.callback(parameters[0],parameters[1])  // *.*
   }
}

var obj = new SomeClass( doSomething, Array('v1text','v2text') );

问题是如果我将函数doSomething更改为

The problem is if I change function doSomething to

function doSomething(v1,v2,v3){ //blah; }



我必须更改相应的行(标记为 // *。 * )在 SomeClass

this.callback(parameters[0],parameters[1],parameters[2]);

可以避免(*。*)行,无论'doSomething'函数的参数的数量如何改变?

What can be done to avoid the (*.*) line to be changed no matter how the number of 'doSomething' function's parameters is changed?

非常感谢!

推荐答案

this.callback.apply(this, parameters);

应用的第一个参数表示回调中的this的值,可以设置为any值。

The first parameter to apply indicates the value of "this" within the callback and can be set to any value.

这篇关于如何传递多个参数到一个javascript回调函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 12:17