0

我的数据库正在更新,但未触发成功回调。如果我在 ajax 调用之前发出警报,它可以工作,但如果我在 ajax 调用之后放置它,它就不起作用。即使它在 ajax 函数之外。

我应该怎么做才能触发成功回调?

$('li').click(function() {
    var task_id = $(this).parent().attr("task_id");
    var task_box = $(this).parent().parent().parent().attr("id");
    var new_color = $(this).attr('class');
    $.ajax({
        type: "POST",
        url: myBaseUrl + 'tasks/updateColor',
        data: {id: task_id, color: new_color},
        success: function(response, status) {
            //$(task_box).attr('class', new_color);
            alert(response);

        },
        error: function(response, status) {
            alert(results);
            //alert('error');

        }
    });
    return false;
});
4

1 回答 1

0

把它放在控制器中

$this->autoRender = false;

于 2013-07-09T22:18:12.060 回答