使用Post提交时须将空格转换成加号的解释

2019-12-24,,,,

jQuery的serialize模块中有个r20正则
复制代码 代码如下:
var r20 = /%20/g,

jQuery.param方法中会将所有的"%20"转成"+",即提交数据前,数据中如果包含空格,那经过encodeURIComponent后,空格会转成"%20"
复制代码 代码如下:
encodeURIComponent(' ') === '%20'; // true

最后需要将"%20"转换成"="再Post提交。这样后台程序接受到的才是真正的空格。

关于 encodeURIComponent,见MDC描述

encodeURIComponent escapes all characters except the following: alphabetic, decimal digits, - _ . ! ~ * ' ( )

To avoid unexpected requests to the server, you should call encodeURIComponent on any user-entered parameters that will be passed as part of a URI. For example, a user could type "Thyme &time=again" for a variable comment. Not using encodeURIComponent on this variable will give comment=Thyme%20&time=again. Note that the ampersand and the equal sign mark a new key and value pair. So instead of having a POST comment key equal to "Thyme &time=again", you have two POST keys, one equal to "Thyme " and another (time) equal to again.

For application/x-www-form-urlencoded (POST), per http://www.w3.org/TR/html401/interac...m-content-type, spaces are to be replaced by '+', so one may wish to follow a encodeURIComponent replacement with an additional replacement of "%20" with "+".

相关
https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/encodeURIComponent
http://www.w3.org/TR/html401/interact/forms.html#form-content-type

您可能感兴趣的文章:

  • 完美解决js传递参数中加号和&号自动改变的方法
  • 浅谈在js传递参数中含加号(+)的处理方式
  • 解决js数据包含加号+通过ajax传到后台时出现连接错误
  • URL的参数中有加号传值变为空格的问题(URL特殊字符)

《使用Post提交时须将空格转换成加号的解释.doc》

下载本文的Word格式文档,以方便收藏与打印。