Home  >  Article  >  Backend Development  >  关于ajax,该怎么处理

关于ajax,该怎么处理

WBOY
WBOYOriginal
2016-06-13 10:03:11765browse

关于ajax
流程是这样的:首先由前台php页传递给js文件,js文件把值传到后台处理页面,处理完后返回四个数组给js页。现在想把这4个数组传给前台php页面,不知道这里应该怎么做,给个思路,或者相关资料 ,谢谢

------解决方案--------------------
把数组序列化再传,

PHP code
$arr=array(1,2,3,4);$nrr=serialize($arr);<br><font color="#e78608">------解决方案--------------------</font><br>晕,搞这么复杂做什么,既然最终结果是php->php那就用session把你四个数组注册下,在前台直接用!<br><font color="#e78608">------解决方案--------------------</font><br>
探讨
引用:
把数组序列化再传,PHP code$arr=array(1,2,3,4);$nrr=serialize($arr);
接收面页
PHP code$arr=unserialize($nrr);

我现在js能收到后台php传的值 问题是如何将js数组传给前台页面php

------解决方案--------------------
在服务端把需要传递的值先赋值为一数据,然后json_encode()之后输出
然后Js得到之后转化一下就可以直接调用了
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn