Home > Backend Development > PHP Tutorial > php前端与后台的传输?该如何处理

php前端与后台的传输?该如何处理

WBOY
Release: 2016-06-13 12:21:37
Original
1789 people have browsed it

php前端与后台的传输?
前端如何将数据传给后台?后台如何接收前端发来的数据?用JSON_ENCODE($A);吗?后台又如何将数据发还给前端?
$.post('',{'qnumber':qNumber},function(data){

},'json');?这是什么意思?
------解决思路----------------------
$.post ,表示你用post发送数据
后面第一个参数,后台处理页面,用$_POST获取你传的数据
{'qnumber':qNumber} 后台页面用$_POST['qnumber']获取
后台页面处理完成后,json输出你要返回给前端的页面
如:
$return['status']=1;
$return['msg']='操作成功';
echo json_encode($return);
------解决思路----------------------
前端如何将数据传给后台?
浏览器按 GET 或 POST 方式向后台发送数据,后台按正常的 GET 或 POST 方式接收

后台又如何将数据发还给前端?
当然是按前端需要的格式发送了,谁叫你是服务方呢

$.post('',{'qnumber':qNumber},function(data){},'json');
通知 jQuery 将返回的数据当做 json 解释
但这个通知 php 是收不到的。所以 php 只能按事先的约定返还数据

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template