Web服务响应不是来自$ .ajax或javascript中的$ post

时间:2012-03-22 06:22:42

标签: javascript jquery ajax

我打电话给我当地的网络服务&获得&发布电话。 当我点击数据库更新但是没有显示来自后调用的响应时的后调用 如果$ ajax'GET'调用firebug控制台告诉'200 OK',但响应是空的。 请告诉我我的电话有什么问题

$.ajax({
            type: 'GET',
            url: 'http://localhost/myweb/index.php/quiz/getquiz/8',
            dataType: 'json',
            error: function(data)
            {
                alert('Error '+data.error)  ;
            },
            success: function(data)
            {
                alert('success');
            },
            complete: function(data)
            {
            alert('complete track: '+data.status);
            },
            data: {},               
        });

我注意到,当错误功能添加时,它会将消息显示为

function () {
    if (list) {
        var length = list.length;
        add(arguments);
        if (firing) {
            firingLength = list.length;
        } else if (memory && memory !== true) {
            firingStart = length;
            fire(memory[0], memory[1]);
        }
    }
    return this;
}

0 个答案:

没有答案