1. 程式人生 > >通過AJAX傳遞JSON格式php後臺

通過AJAX傳遞JSON格式php後臺

con lse state object input head pos ech amp

js部分

b.js

if(window.XMLHttpRequest){

xhr=new XMLHttpRequest();

}else{

xhr=new ActiveXObject("Microsoft.XMLHTTp");

}

var arr=Array();

arr.push("a");

arr.push("b");

arr.push("c");

arr=JSON.stringify(arr);//非常重要

xhr.open("post","a.php",true);

xhr.onreadystatechange=function(){

if(xhr.readyState==4 && xhr.statues==200){

~~~~~~~~~~~~~~~~~~~~~~

}

}

xhr.setRequestHeader("content-type","application/json;charset=utf-8");//非常重要

xhr.send(arr);

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

a.php

\\\\\\

<?php

$json=file_get_content("php://input");

$arr=json_decode($json);

$arr是數組,自己看著辦

END!

通過AJAX傳遞JSON格式php後臺