How do I PHP-unserialize a jQuery-serialized form?(我如何对 jQuery 序列化的表单进行 PHP 反序列化?)
问题描述
使用$('#form').serialize()
,我能够将其发送到PHP 页面.现在我如何在 PHP 中反序列化它?它是在 jQuery 中序列化的.
Using $('#form').serialize()
, I was able to send this over to a PHP page. Now how do I unserialize it in PHP? It was serialized in jQuery.
推荐答案
您不必通过 jquery serialize
方法对 PHP 中的任何内容进行反序列化.如果您序列化数据,如果您使用 GET 方法 ajax 请求,则应将其作为查询参数发送到 PHP,如果您使用 POST ajax 请求,则应将其作为查询参数发送到 PHP.因此,在 PHP 中,您将根据请求类型访问诸如 $_POST["varname"]
或 $_GET["varname"]
之类的值.
You shouldn't have to unserialize anything in PHP from the jquery serialize
method. If you serialize the data, it should be sent to PHP as query parameters if you are using a GET method ajax request or post vars if you are using a POST ajax request. So in PHP, you would access values like $_POST["varname"]
or $_GET["varname"]
depending on the request type.
serialize
方法只是获取表单元素并将它们放在字符串形式中."varname=val&var2=val2"
The serialize
method just takes the form elements and puts them in string form. "varname=val&var2=val2"
这篇关于我如何对 jQuery 序列化的表单进行 PHP 反序列化?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我如何对 jQuery 序列化的表单进行 PHP 反序列化
- Laravel 仓库 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01