Home > Backend Development > PHP Tutorial > thinkjavascript和php之间互相传值(数组),大家都用什么方法

thinkjavascript和php之间互相传值(数组),大家都用什么方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:36:23
Original
1190 people have browsed it

我先举例把
1、传递数组时用JSON.stringify,然后PHP端类似json_decode()和json_encode()
2、js端join()变成字符串,php用explode()拆开变回数组
3、encodeURIComponent() ,这个方法没用过

有没有补充
之前在用第一种方法的时候 tp自带的$this->_post()会将双引号转义,导致json_decode()解出来是null,有无解决办法?用原生的$_POST又有安全问题

回复内容:

我先举例把
1、传递数组时用JSON.stringify,然后PHP端类似json_decode()和json_encode()
2、js端join()变成字符串,php用explode()拆开变回数组
3、encodeURIComponent() ,这个方法没用过

有没有补充
之前在用第一种方法的时候 tp自带的$this->_post()会将双引号转义,导致json_decode()解出来是null,有无解决办法?用原生的$_POST又有安全问题

encodeURIComponent()应该是在将字符串传入到一个URL地址中的时候用的。

<code>encodeURIComponent
</code>
Copy after login

这个方法只是在进行post或者get提交时要对数据中的特殊字符进行编码


在使用JSON时,请注意你的格式。比如说最常见的就是 使用双引号 将键值对包裹起来

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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template