我有以下情况:
// 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() 来生成客户端包装器。