有人知道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);
}
});
})();
问题是我只想发送一个数据,如果找到它只会附加数据 知道怎么做吗?
答案 0 :(得分:0)
简单:
在request_viewer_and_its_utilities.php的结果中,你返回代码,0是OK,不是0不行,在request_viewer_and_its_utilities.php中的逻辑中,使用try,catch来控制一些异常插入数据。