这是传递给Google Closure Compiler API时出现问题的一段代码(它只返回任何内容,无论我添加到此部分的代码如何)。有人看到我不知道的事吗?非最小化代码按预期运行。
window.myFun = function(data){
for(var i=0; i < data.length; i++)
{
var object = {int_id:data[i]["id"], str_value:data[i]["val"]};
$.ajax({
type: 'GET',
url: "http://www.example.com/webservice",
dataType: 'jsonp',
data: object,
success: function(res){
console.log(res);
},
error: function(res){
console.log(res);
}
});
}
};