Google Closure Compiler API不返回任何内容

时间:2016-01-21 12:47:27

标签: javascript google-closure-compiler

这是传递给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);
        }
    });
}
};

0 个答案:

没有答案