主頁 > 知識庫 > ajax實(shí)現(xiàn)遠(yuǎn)程通信

ajax實(shí)現(xiàn)遠(yuǎn)程通信

熱門標(biāo)簽:騰訊地圖標(biāo)注位置能用多久 云呼外撥網(wǎng)絡(luò)電話系統(tǒng) 超級大富翁地圖標(biāo)注 ai機(jī)器人電銷資源 地圖標(biāo)注項(xiàng)目怎么樣 硅語電話機(jī)器人公司 機(jī)器人電銷騙局揭秘 個(gè)人怎樣在百度地圖標(biāo)注地名 越南河內(nèi)地圖標(biāo)注

本文實(shí)例為大家分享了ajax實(shí)現(xiàn)遠(yuǎn)程通信,供大家參考,具體內(nèi)容如下

第一個(gè)文件:html 

!DOCTYPE html>
html lang="en">
head>
  meta charset="UTF-8">
  title>ajax解決跨域問題/title>
  script src="jquery-3.0.0.min.js" type="text/javascript">/script>
/head>
body>
script>
  $.ajax({
    type:"POST",
    url:"postDemo.php",
    data:{
      "url":"http://192.168.4.101:90/PHPStudy4/server.php",
      "username":"admin",
      "password":"admin",
    },success:function(data){
      var result=eval("("+data+")");
      console.log(result);
    }

  })
/script>
/body>
/html>

 第二個(gè)文件:服務(wù)器端處理數(shù)據(jù) 

?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2016-7-21
 * Time: 10:12
 */

if ($_SERVER["REQUEST_METHOD"] == "POST") {
//  echo json_encode(array("111"=>"112"));
  if (isset($_POST["url"])  isset($_POST["username"])  isset($_POST["password"])) {
    $result = postDemo($_POST["url"], array("username" => $_POST["username"], "password" => $_POST["password"]));
    echo $result;

  } else {
    echo json_encode(array("msg2" => "!!!!!!!!!!!!!!!!!!!!!error!!!!!2"));
  }
} else {
  echo json_encode(array("msg" => "error!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"));
}
function postDemo($url, $data)
{

  $query = http_build_query($data);
  $options = array(
    "http" => array(
      "header" => "Content-type: application/x-www-form-urlencoded\r\n" .
        "Content-length:" . strlen($query) . "\r\n" .
        "User-Agent:MyAgent/1.0/r/n",
      "method" => "POST",
      "content" => $query
    )
  );
  $content = stream_context_create($options);
  $result = file_get_contents($url, false, $content);
  return $result;
}

//echo postDemo("http://192.168.4.101:90/PHPStudy4/server.php",array("username"=>"admin","password"=>"admin"));

其中"url":"http://192.168.4.101:90/PHPStudy4/server.php",這個(gè)url就是我們向遠(yuǎn)端的訪問地址.

 以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • AJAX機(jī)制詳解以及跨域通信
  • AJAX簡單異步通信實(shí)例分析
  • 快速獲取Ajax通信對象的方法

標(biāo)簽:舟山 鄭州 海南 遼源 洛陽 邢臺(tái) 內(nèi)蒙古 林芝

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ajax實(shí)現(xiàn)遠(yuǎn)程通信》,本文關(guān)鍵詞  ajax,實(shí)現(xiàn),遠(yuǎn)程,通信,ajax,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ajax實(shí)現(xiàn)遠(yuǎn)程通信》相關(guān)的同類信息!
  • 本頁收集關(guān)于ajax實(shí)現(xiàn)遠(yuǎn)程通信的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章