基于上面的标题。实现Ajax数据库侦听器的最佳方法是什么。
我们想要实现一个监听器的场景(例如,如果我们想在每次插入新条目时检索特定表的附加条目)。
我尝试使用recursive jquery ajax post请求来检查表条目。但我不知道这是不是最好的方式。也许你可以分享一些伟大的东西和最好的东西。
function my_table_db_listener(){
$.ajax({
type : 'post',
url : 'http://mysite.com/?axn=get_table_new_entries',
success : function(data){
//process data
...
...
//recursive call
my_table_db_listener();
},
error : function(xhr, ajaxOptions, thrownError){
alert(xhr.statusText);
}
})
}