if one value of key/value pairs is array then treat each array value in part
This commit is contained in:
parent
32816eff59
commit
317ea5caea
1 changed files with 9 additions and 2 deletions
|
@ -892,8 +892,15 @@ jQuery.extend({
|
||||||
// Otherwise, assume that it's an object of key/value pairs
|
// Otherwise, assume that it's an object of key/value pairs
|
||||||
} else {
|
} else {
|
||||||
// Serialize the key/values
|
// Serialize the key/values
|
||||||
for ( var j in a )
|
for ( var j in a ) {
|
||||||
s.push( j + "=" + encodeURIComponent( a[j] ) );
|
//if one value is array then treat each array value in part
|
||||||
|
if (typeof a[j] == 'object') {
|
||||||
|
for (var k = 0; k < a[j].length; k++) {
|
||||||
|
s.push( j + "[]=" + encodeURIComponent( a[j][k] ) );
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
s.push( j + "=" + encodeURIComponent( a[j] ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return the resulting serialization
|
// Return the resulting serialization
|
||||||
|
|
Loading…
Add table
Reference in a new issue