如何将多个参数传递给Prototype中的onSuccess函数?

时间:2009-07-24 07:38:33

标签: javascript ajax prototypejs call

我是使用Prototype库的初学者。我想知道如何将多个参数传递给Prototype中的onSuccess / onFailure函数? 例如: -

new Ajax.Request('testurl',{
        method: 'post',
        parameters: {param1:"A", param2:"B", param3:"C"},
        onSuccess: fnSccs,
        onFailure: fnFail
        })

在我的成功函数中fnSccs: -

function fnSccs(response)
{
    alert(response.responseText);
}

我想将一个新参数传递给fnSccs函数。怎么可能。谢谢你的帮助。

1 个答案:

答案 0 :(得分:7)

您可以将成功函数包装到另一个收到所需参数的函数中,然后返回旧函数:

new Ajax.Request('testurl',{
                method: 'post',
                parameters: {param1:"A", param2:"B", param3:"C"},
                onSuccess: mySuccess('myValue1', 'myValue2'),
                onFailure: fnFail
                })

function mySuccess(param1, param2){
  return function(response){ // Your old success function
    alert(param1);  // The parameter still accessible here
    alert(param2);
    alert(response);
  }
}

当您调用mySuccess(...)时,会返回您的旧函数,但您仍然可以访问参数,因为变量仍然在外部closure上分配。

您可以查看正在运行的代码段here