1

私はこのコードを持っています:

    $(window).load(function(){
setInterval(function(){
var username=_userdata['username'];
var username=_userdata['username'];
$.get('/notification.forum',function(data){
     var b= data.unread;
    if(b >= 1){
      var c = data.store;
      for(var keys in c){
        var d = c[keys];
       if(d.read === 0){
        var e= d.text.type;
        var from= d.text.from.name;
        var topic = e===7 ? "in the topic "+d.text.post.topic_name.replace(/-/g,' ') : "";
        var type= Notify(e);
          createNotifcation('http://i.imgur.com/LPVUvcf.png',username + ' you have a new notification!',type + " from "+from+"  "+topic);
       }
      }
     }
   });
},5000);
   });

でもリアルタイムでやりたい。5秒ごとにチェックしていますが、これにより、私のフォーラムは「リクエストの制限を超えました..」などのエラーを表示します..そして、これは面倒です. 私のフォーラム: www.daily-support.org

4

0 に答える 0