使用Sajax的Ajax回调函数的附加参数

时间:2012-12-04 14:40:15

标签: javascript ajax callback sajax

我遇到以下情况:

// callback function for the asynchronous call
function get_data_cb(z, arg1) {
    // do something
}

function foo() {
    var n = 1;
    // get_data is a server-side function triggered by the AJAX call, 
    // client only has the wrapper function with the same name
    get_data(get_data_cb);  // 1
}

我的问题:

在1),如何将变量n一直传递给get_data_cb?我在服务器端的ajax函数上使用sajax_export()来生成客户端包装器。

0 个答案:

没有答案