通过AJAX传递JSON格式php后台

Posted 吃掉黍

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过AJAX传递JSON格式php后台相关的知识,希望对你有一定的参考价值。

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后台的主要内容,如果未能解决你的问题,请参考以下文章

前台通过ajax获取后台数据,PHP如何返回中文数据

PHP传递通过AJAX传递JSON对象数组到前台,前台解析,遍历JSON

前端ajax如何接受后台的model

springMVC通过ajax传递参数list对象或传递数组对象到后台

ajax传递json,然后服务器接受json的代码编写

jQuery通过Ajax向PHP服务端发送请求并返回JSON数据