如何检查是否已在mysql表中插入新数据

时间:2014-01-03 17:59:30

标签: javascript php jquery ajax facebook

有人知道Facebook通知是如何运作的吗?

我有这段代码

(function retrieve_req() {
    $.ajax({
        url: 'request_viewer_and_its_utilities.php',
        success: function(data) {
            $('.internal_load_request_from_extern_page').html(data);
        },
        complete: function() {
            // Schedule the next request when the current one's complete
            setTimeout(retrieve_req, 500);
        }
    });
})();

问题是我只想发送一个数据,如果找到它只会附加数据  知道怎么做吗?

1 个答案:

答案 0 :(得分:0)

简单:

在request_viewer_and_its_utilities.php的结果中,你返回代码,0是OK,不是0不行,在request_viewer_and_its_utilities.php中的逻辑中,使用try,catch来控制一些异常插入数据。