jQuery.query.js 取参数的两点问题分析
程序员文章站
2022-03-12 09:34:08
1. 参数中存在空格时取到的值中空格被替换为加号:+
2. 当参数某个key的value不存在时,获取到的value并不是空/null 而是true。
在网上找到了个解决方案,可以参考下(是否有其...
1. 参数中存在空格时取到的值中空格被替换为加号:+
2. 当参数某个key的value不存在时,获取到的value并不是空/null 而是true。
在网上找到了个解决方案,可以参考下(是否有其他副作用暂时未实验出)
1. 空格变加号+
在jquery.query.js文件中找到下面代码
代码如下:
tostring: function() {
var i = 0, querystring = [], chunks = [], self = this;
var encode = function(str) {
str = str + "";
//if ($spaces) str = str.replace(/ /g, "+");
return encodeuricomponent(str);
};
注释掉 if ($spaces) str = str.replace(/ /g, "+"); 那一行即可
2. value为空的情况
. 代码如下:
get: function (key)
{
var target = this.get(key);
if (typeof (target) == 'boolean')
return '';
if (is(target, object))
return jquery.extend(true, {}, target);
else if (is(target, array))
return target.slice(0);
return target;
},
加入if (typeof (target) == 'boolean')return '';