使用 POST 方法发送 JSON

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h1>使用 HTTP 方法 POST 把数据发送到 PHP 文件</h1>
  6.  
  7. <p id="demo"></p>
  8.  
  9.  
  10. <script>
  11. var xmlhttp, myObj, x, txt = "";
  12. xmlhttp = new XMLHttpRequest();
  13. xmlhttp.onreadystatechange = function() {
  14. if (this.readyState == 4 && this.status == 200) {
  15. myObj = JSON.parse(this.responseText);
  16. for (x in myObj) {
  17. txt += myObj[x].CustomerId + "<br>";
  18. }
  19. document.getElementById("demo").innerHTML = txt;
  20. }
  21. };
  22. xmlhttp.open("POST", "/demo/demo_json_db.php", true);
  23. xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  24. xmlhttp.send();
  25. </script>
  26.  
  27. </body>
  28. </html>