Skip to content

Commit df1f7b0

Browse files
mgoldmethvin
andauthored
jQuery.ajax: Document special handling of a double question mark
Fixes gh-999 Closes gh-1171 Ref gh-1005 Co-authored-by: Dave Methvin <[email protected]>
1 parent 5120543 commit df1f7b0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

entries/jQuery.ajax.xml

+6-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,12 @@ $.ajax({
8484
<type name="PlainObject"/>
8585
<type name="String"/>
8686
<type name="Array"/>
87-
<desc>Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests. See <code>processData</code> option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the <code>traditional</code> setting (described below).</desc>
87+
<desc>
88+
<p>Data to be sent to the server. If the HTTP method is one that cannot have an entity body, such as GET, the <code>data</code> is appended to the URL.</p>
89+
<p>When <code>data</code> is an object, jQuery generates the data string from the object's key/value pairs unless the <code>processData</code> option is set to <code>false</code>. For example, <code>{ a: "bc", d: "e,f" }</code> is converted to the string <code>"a=bc&amp;d=e%2Cf"</code>. If the value is an array, jQuery serializes multiple values with same key based on the value of the <code>traditional</code> setting (described below). For example, <code>{ a: [1,2] }</code> becomes the string <code>"a%5B%5D=1&amp;a%5B%5D=2"</code> with the default <code>traditional: false</code> setting.</p>
90+
<p>When <code>data</code> is passed as a string it should <strong>already be encoded</strong> using the correct encoding for <code>contentType</code>, which by default is <code>application/x-www-form-urlencoded</code>.</p>
91+
<p>In requests with <code>dataType: "json"</code> or <code>dataType: "jsonp"</code>, if the string contains a double question mark (<code>??</code>) anywhere in the URL or a single question mark (<code>?</code>) in the query string, it is replaced with a value generated by jQuery that is unique for each copy of the library on the page (e.g. <code>jQuery21406515378922229067_1479880736745</code>).</p>
92+
</desc>
8893
</property>
8994
<property name="dataFilter" type="Function">
9095
<argument name="data" type="String"/>

0 commit comments

Comments
 (0)