PHP Ajax聊天:数据一台PC到另一台PC无法发送/接收

时间:2013-01-02 11:11:48

标签: php javascript jquery

我正在创建一个基本的Php Ajax聊天应用程序。

当我在我自己的PC上使用这个基本应用程序的跨浏览器(意味着一次镀铬和Mozilla假设两个人)工作正常。但是当我在跨PC上使用这个应用程序意味着一个人正在从一台PC聊天而另一个人正在从第二台PC聊天然后它无法工作..

问题:从第二台PC上接收来自一台PC的聊天内容           但是从第二台PC(聊天回复)发送聊天内容没有收到

 Ajax response is not coming using `set Interval` and browser is not refreshing..

代码:

J查询

setInterval(function() { 
   $.ajax({
     url: "http://192.168.1.13/naresh/ajaxchat/chatsave.php?q=getChat",
     success: function(response) {
        $("#ulShowChatContent").append(response);
         }
    });
}, 1000);

function getChat(){
        $useremail  = $_SESSION['email'];
        $sqlGetUserInfo = mysql_query("select * from  users where email = '$useremail'") or die(mysql_error());
        if(mysql_num_rows($sqlGetUserInfo)>0){
            $userInfo = mysql_fetch_array($sqlGetUserInfo);
            $userId = $userInfo['id']; 
            $currentdate =  date('Y-m-d H:i:s');

            $sqlGetChatContent = mysql_query("select chat_id,chat_content,name from pvt_chat 
                                                INNER JOIN users ON pvt_chat.userid = users.id 
                                                where pvt_chat.userid != '$userId' 
                                                and receive_status = 0
                                                and send_datetime <= '$currentdate' 
                                                ORDER BY send_datetime DESC limit 1") or die(mysql_error());

            if(mysql_num_rows($sqlGetChatContent)>0) {
                $resGetChatContent = mysql_fetch_array($sqlGetChatContent);
                $receiveChatId = $resGetChatContent['chat_id'];
                echo '<li>'.$resGetChatContent['name'].' says : '.$resGetChatContent['chat_content'].'</li>';
                $sqlUpdateRecStatus = mysql_query("UPDATE pvt_chat SET receive_status = '1' WHERE chat_id ='$receiveChatId'") or die(mysql_error());
            }
        }
    }

1 个答案:

答案 0 :(得分:2)

我的问题:PC2用来访问聊天的网页(+域名)是什么?如果从他的本地主机或除192.168.1.13以外的任何域/ IP访问该页面,则会出现跨域问题。 为了安全起见,今天的浏览器阻止AJAX调用另一个域上的网页(甚至子域和端口也必须是同一个IIRC)。如果PC2正在从http://localhost/chatPage.html访问网页(例如),那么他就无法在AJAX调用中向“http://192.168.1.13”发出请求。

一些解决方案:

  • 在与您的AJAX呼叫所在的服务器相同的服务器上托管聊天页面(以便聊天页面的域名与AJAX呼叫的域名相同)
  • 使用JSON响应并在浏览器中将其转换为HTML。当您使用JSON时,有一个跨域问题的解决方法,但这意味着您必须自己将JSON输出转换为HTML。您还需要确保将属性dataType: 'jsonp'放入AJAX调用中。