欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ajax实现远程通信

程序员文章站 2022-05-14 21:20:29
本文实例为大家分享了ajax实现远程通信,供大家参考,具体内容如下 第一个文件:html  <...

本文实例为大家分享了ajax实现远程通信,供大家参考,具体内容如下

第一个文件: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>

 第二个文件:服务器端处理数据 

<?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",这个url就是我们向远端的访问地址.

 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。