0

このファイルでは、次のように呼び出されます。

/fichier_clients/fiche_client.html?id=4870

「id」値を使用して、外部ファイル (php) にリクエストを行います。データが php ファイル (外部ドメイン) に渡されません。遠い php ファイルはエラーなしで正常に実行され、抽出を再送信します。test idを持つデータベースからのデータですが、ajax 経由で受け取った値ではありません -> params: {"term": id},

  <link href="jquery-mobile/jquery.mobile.theme-1.0.min.css" rel="stylesheet" type="text/css"/>
  <link href="jquery-mobile/jquery.mobile.structure-1.0.min.css" rel="stylesheet" type="text/css"/>
  <script src="jquery-mobile/jquery-1.6.4.min.js" type="text/javascript"></script>
  <script src="jquery-mobile/jquery.mobile-1.0.min.js" type="text/javascript"></script>
  <script type='text/javascript' language='javascript'>
  function fiche0()
  {
      var id = location.search; 
      var id = id.split('='); 
      var id = id[1];   
      alert (id);
      var encoded = encodeURIComponent('http://www.mydomain.fr/connexion.php');

      $.ajax({
    url: 'http://whateverorigin.org/get?url='+encoded,
    type:'POST',
    contentType:"application/json",
    dataType: 'jsonp',
    crossDomain:true,
    params: {"term": id},
    timeout: 4000
    }).done(function(reponse){
         a=reponse.contents.split(';'); 
              document.getElementById("client").innerHTML = a[0] ;
              document.getElementById("adresse1").innerHTML = a[1] ;
      })


  }


  window.onload = fiche;
  </script>
4

2 に答える 2

0

外部ドメインに POST することはできません。GET 要求のみがデータを外部に渡します。

$_POST ではなく、PHP スクリプトで $_REQUEST を使用することをお勧めします。これにより、送信方法に関係なく、入ってくるすべてのデータを確認できます。

于 2013-10-31T14:54:58.430 に答える
0

この場合、データを送信できますが、返信はありません


  <script type="text/javascript">
  function get_XmlHttp() {
    // create the variable that will contain the instance of the XMLHttpRequest object (initially with null value)
    var xmlHttp = null;
    if(window.XMLHttpRequest) {        // for Forefox, IE7+, Opera, Safari, ...
      xmlHttp = new XMLHttpRequest();
    }
    else if(window.ActiveXObject) {    // for Internet Explorer 5 or 6
      xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    return xmlHttp;
  }
  // sends data to a php file, via GET, and displays the received answer
  function ajaxrequest(pid) {
    var request =  get_XmlHttp();        // call the function for the XMLHttpRequest instance

    // create the URL with data that will be sent to the server (a pair index=value)
    var  url = 'http://www.mydomain.fr/connexion.php?term=3334';

    request.open("GET", url, true);            // define the request
    request.send(null);        // sends data

    // Check request status
    // If the response is received completely, will be transferred to the HTML tag with tagID
    request.onreadystatechange = function() {
      if (request.readyState == 4) {
          alert ("toto");
        document.getElementById("context").innerHTML = request.responseText;
      }
    }
  }


    window.onload = ajaxrequest;
  </script>

  <div id="context"></div> 
于 2013-11-02T01:01:38.810 に答える