You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The content type sent in the request header that tells the server what kind of response it will accept in return. */
30
+
defaccepts: js.Any= js.native
31
+
32
+
/** By default, all requests are sent asynchronously (i.e. this is set to true by default). If you need synchronous requests, set this option to false. */
33
+
defasync:Boolean= js.native
34
+
35
+
/** A pre-request callback function that can be used to modify the [[JQueryXHR]] object before it is sent.
36
+
* Returning false in the beforeSend function will cancel the request. */
/** Whether to trigger global Ajax event handlers for this request. The default is true. Set to false to prevent the global handlers like `ajaxStart` or `ajaxStop` from being triggered. */
73
+
defglobal:Boolean= js.native
74
+
75
+
/** An object of additional header key/value pairs to send along with requests using the XMLHttpRequest transport. */
76
+
defheaders: js.Any= js.native
77
+
78
+
/** Allow the request to be successful only if the response has changed since the last request. */
79
+
defifModified:Boolean= js.native
80
+
81
+
/** Allow the current environment to be recognized as "local," (e.g. the filesystem), even if jQuery does not recognize it as such by default. */
82
+
defisLocal:Boolean= js.native
83
+
84
+
/** Override the callback function name in a JSONP request. */
85
+
defjsonp:String= js.native
86
+
87
+
/** Specify the callback function name for a JSONP request. */
88
+
defjsonpCallback: js.Any= js.native
89
+
90
+
/** The HTTP method to use for the request (e.g. "POST", "GET", "PUT"). */
91
+
defmethod:String= js.native
92
+
93
+
/** A mime type to override the XHR mime type. */
94
+
defmimeType:String= js.native
95
+
96
+
/** A password to be used with XMLHttpRequest in response to an HTTP access authentication request. */
97
+
defpassword:String= js.native
98
+
99
+
/** By default, data passed in to the data option as an object (technically, anything other than a string) will be
100
+
* processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". */
101
+
defprocessData:Boolean= js.native
102
+
103
+
/** Only applies when the "script" transport is used. */
104
+
defscriptCharset:String= js.native
105
+
106
+
/** An object of numeric HTTP codes and functions to be called when the response has the corresponding code. */
107
+
defstatusCode: js.Any= js.native
108
+
109
+
/** A function to be called if the request succeeds. */
0 commit comments