我每秒钟都在轮询我的数据库,我需要它在一个新条目提交到数据库后才能执行某些操作;它不能只是重新获取所有内容。有什么帮助吗?

最佳答案

您可以定期检查最新的记录id是否与脚本提取的最后一个id匹配,如果不匹配,则提取新数据。例子:

function updateView(id) {
    $.get("foo.php", { lastId: id }, function(response) {
        if(response != lastId) {

            // new entry in DB, do something special
            // and set lastId to the newly fetched ID
            lastId = id;
        }
    });
}

var i = setInterval(function() { updateView(id) }, 10000);

10-01 05:12
查看更多