在数据库中插入新数据时警告用户

时间:2012-12-02 10:39:36

标签: php javascript ajax

我不知道如何搜索这个,所以我有点迷失(我在这里看到的两个主题已经关闭)。

我有一个新闻网站,我想在数据库中插入新数据时警告用户。我想在StackOverflow上这样做,我们会在没有重新加载页面的情况下发出警告,或者在facebook中警告你没有重新加载的新消息/通知。

哪种方法最好?它是某种具有超时的监听器,不断检查数据库吗?听起来效率不高......

提前致谢。

1 个答案:

答案 0 :(得分:3)

你需要javascript ajax和json以及回调函数来不断检查。它可以通过推送服务完成,但PHP很糟糕,你需要websockest等.facebook使用超时调用。不确定stackoverflow

   refreshInterval = 500
  refreshTimeout = setTimeout( getNotificationCounts, refreshInterval );
function getNotifications() {
        $.ajax({
            url : 'path_to_your_php',
            type : 'POST',
                    data:   //put for exampel user_id but it cvan be handled by sesion as well
            dataType : 'json',
            success : function(data) {
                alert('You have'+ data.total +' new messages')
                refreshTimeout = setTimeout( getNotificationCounts, refreshInterval ); //this will check every half of second
            }
        });
    }

然后在PHP中,例如,您在数据库中有一个标志,您可以使用该标志检查数据是否是新数据库。注意格式化和正确的sql转义

    $result=mysql_query("SELECT count(*) as total from myTable where user_id=$_POST['user_id'] AND is_read=0"); 

      //note instad of $_POST you can use session if users are logged in, or however you are handling it
        $data=mysql_fetch_assoc($result);
        echo json_encode($data)

之后,您可以创建另一个ajax调用,在用户单击它们时将其标记为已读。或打开对话框列表或wahtever

mysql_query("UPDATE myTable WHERE user_id=$_POST['user_id'] SET  is_read=1");