dongzha5934 2018-04-13 07:04
浏览 50
已采纳

使用Ajax Codeigniter更新表或div数据

I am trying to create a page where it shows the current chats done by clients. Now I am using Openfire as Server, and PHP Ajax for scripting.

Openfire dumps data into MySQL Table. I retrive all the records using Codeigniter-PHP:

 public function get_chats()
    {
        $this->db->select('*');
        $this->db->from('ofMessageArchive');
        $query = $this->db->get();
        $result = $query->result();


        $this->data['messages'] = $result;


        $this->data['subview'] = 'dashboard/test';
        $this->load->view('_layout_main', $this->data);
    }

Now on my view I have table :

<table class="table table-striped table-bordered table-hover" >
         <thead>
             <th>From</th>
             <th>To</th>
             <th>Message</th>
             <th>Time</th>
         </thead>

         <tbody>
            <?php if(count($messages)): foreach($messages as $key => $message): ?> 
            <tr> 
                <td><?php  $users =  explode("__", $message->fromJID); echo $users[0];?></td>
                <td><?php $tousers =  explode("__", $message->toJID); echo $tousers[0];  ?></td>
                <td><i class="material-icons">play_circle_filled</i>Message</td>
                <td><?php echo $date->format('d-m-y H:i:s'); ?></td>
            </tr>
            <?php endforeach; ?>

            <?php endif; ?>
    </tbody>
    </table>           

Now I don't want to reload the whole page instead just refresh the table contents every 5 seconds.

I am using DataTables.

I also thought I could pass json to my view, but I don't know how to update it every 5 seconds.

public function get_chats()
    {
        $this->db->select('*');
        $this->db->from('ofMessageArchive');
        $query = $this->db->get();
        $result = $query->result();


        if (count($result)) {
            $response =  json_encode($result);
        }
        else
        {
            $response = false;
        }

        echo $response;
    }

Also this is going to send new and older messages. So I only want to append news messages to table old message should be not repeated

  • 写回答

1条回答 默认 最新

  • duandie0884 2018-04-13 07:36
    关注

    Your backend function :

     public function get_chats()
        {
            $this->db->select('*');
            $this->db->from('ofMessageArchive');
            $query = $this->db->get();
            $result = $query->result();
    
    
            if (count($result)>0) {
                $response['status']= true;
                $response['messages']= $result;
                $response['date']= date("d-m-y H:i:s", strtotime($your-date-here));
            }
            else
            {
                $response['status']=false;
            }
    
            echo json_encode($response);
        }
    

    You have to make javascript function like this :

    <script>
    
    function myAJAXfunction(){
     $.ajax({
         url:'your url here',
         type:'GET',
         dataType:'json',
         success:function(response){
             console.log(response);
    
             var trHTML='';
             if(response.status){
               for(var i=0;i<response.messages.length;i++){
    
                  users =response.messages[i]fromJID.slice('--');
                  touser=response.messages[i]toJID.slice('--');
    
                  trHTML=trHTML+
                  '<tr>'+
                   '<td>'+users[0]+'</td>'+
                   '<td>'+touser[0]+'</td>'+
                   '<td><i class="material-icons">play_circle_filled</i>Message</td>'+
                   '<td>'+response.date+'</td>'+
                   </tr>';
             }
    
               $('tbody').empty();
               $('tbody').append(trHTML);
    
             }else{
               trHTML='<tr><td colspan="4">NO DATA AVAILABLE</td></tr>';
               $('tbody').empty();
               $('tbody').append(trHTML);
             }
    
         },
         error:function(err){
            alert("ERROR LOADING DATA");
         }
     });
    }
    
    
    // calling above ajax function  at every 5 seconds
    
    setInterval(myAJAXfunction,5000);
    
    </script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!