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