Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

How do I pass a a large string containing characters like '%' and '&' to my php page through ajax post?

In other words how to javascript-encode them and php-decode them?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
351 views
Welcome To Ask or Share your Answers For Others

1 Answer

the encodeURIComponent() JavaScript function can be used to escape any of those characters in either the keys or the values.

PHP will receive and decode it automatically into the $_POST array.

The format of the data should be Query String format, specifically:

Content-Type: application/x-www-form-urlencoded

For example:

Name=Joe&Age=23&City=Altoona

If you use encodeURIComponent() on each key and each value, then join them with =, and group them by &, you won't have any further issues.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...