티스토리 뷰
ajaxSetup
Ajax 요청에 대한 기본값을 정의. 사용을 권장하지 않습니다.
https://api.jquery.com/category/ajax/
Document
jQuery.ajaxSetup( options )
options : PlainObject ( Ajax 요청을 구성하기위한 키 : 값 으로된 오브젝트 )
settings : 셋팅에 사용할 수 있는 값은 다음과 같다
jQuery.ajax( [settings ] )
- settingsType: PlainObjectA set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup().
- accepts (default:
depends on dataType
)Type: PlainObjectA set of key/value pairs that map a givendataType
to its MIME type, which gets sent in theAccept
request header. This header tells the server what kind of response it will accept in return. For example, the following defines a custom typemycustomtype
to be sent with the request: - 1234567891011121314151617$.ajax({accepts: {mycustomtype: 'application/x-some-custom-type'},// Instructions for how to deserialize a `mycustomtype`converters: {'text mycustomtype': function(result) {// Do Stuffreturn newresult;}},// Expect a `mycustomtype` back from serverdataType: 'mycustomtype'});
cs - Note: You will need to specify a complementary entry for this type in
converters
for this to work properly. - async (default:
true
)Type: BooleanBy default, all requests are sent asynchronously (i.e. this is set totrue
by default). If you need synchronous requests, set this option tofalse
. Cross-domain requests anddataType: "jsonp"
requests do not support synchronous operation. Note that synchronous requests may temporarily lock the browser, disabling any actions while the request is active. As of jQuery 1.8, the use ofasync: false
with jqXHR ($.Deferred
) is deprecated; you must use the success/error/complete callback options instead of the corresponding methods of the jqXHR object such asjqXHR.done()
. - beforeSendA pre-request callback function that can be used to modify the jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object before it is sent. Use this to set custom headers, etc. The jqXHR and settings objects are passed as arguments. This is an Ajax Event. Returning
false
in thebeforeSend
function will cancel the request. As of jQuery 1.5, thebeforeSend
option will be called regardless of the type of request. - cache (default:
true, false for dataType 'script' and 'jsonp'
)Type: BooleanIf set tofalse
, it will force requested pages not to be cached by the browser. Note: Settingcache
to false will only work correctly with HEAD and GET requests. It works by appending "_={timestamp}" to the GET parameters. The parameter is not needed for other types of requests, except in IE8 when a POST is made to a URL that has already been requested by a GET. - completeA function to be called when the request finishes (after
success
anderror
callbacks are executed). The function gets passed two arguments: The jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object and a string categorizing the status of the request ("success"
,"notmodified"
,"nocontent"
,"error"
,"timeout"
,"abort"
, or"parsererror"
). As of jQuery 1.5, thecomplete
setting can accept an array of functions. Each function will be called in turn. This is an Ajax Event. - contentsType: PlainObjectAn object of string/regular-expression pairs that determine how jQuery will parse the response, given its content type. (version added: 1.5)
- contentType (default:
'application/x-www-form-urlencoded; charset=UTF-8'
)When sending data to the server, use this content type. Default is "application/x-www-form-urlencoded; charset=UTF-8", which is fine for most cases. If you explicitly pass in a content-type to$.ajax()
, then it is always sent to the server (even if no data is sent). As of jQuery 1.6 you can passfalse
to tell jQuery to not set any content type header. Note: The W3C XMLHttpRequest specification dictates that the charset is always UTF-8; specifying another charset will not force the browser to change the encoding. Note: For cross-domain requests, setting the content type to anything other thanapplication/x-www-form-urlencoded
,multipart/form-data
, ortext/plain
will trigger the browser to send a preflight OPTIONS request to the server. - contextType: PlainObjectThis object will be the context of all Ajax-related callbacks. By default, the context is an object that represents the Ajax settings used in the call (
$.ajaxSettings
merged with the settings passed to$.ajax
). For example, specifying a DOM element as the context will make that the context for thecomplete
callback of a request, like so:123456$.ajax({url: "test.html",context: document.body}).done(function() {$( this ).addClass( "done" );});cs - converters (default:
{"* text": window.String, "text html": true, "text json": jQuery.parseJSON, "text xml": jQuery.parseXML}
)Type: PlainObjectAn object containing dataType-to-dataType converters. Each converter's value is a function that returns the transformed value of the response. (version added: 1.5) - crossDomain (default:
false for same-domain requests, true for cross-domain requests
)Type: BooleanIf you wish to force a crossDomain request (such as JSONP) on the same domain, set the value of crossDomain totrue
. This allows, for example, server-side redirection to another domain. (version added: 1.5) - dataData 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
processData
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 thetraditional
setting (described below). - dataFilterA function to be used to handle the raw response data of XMLHttpRequest. This is a pre-filtering function to sanitize the response. You should return the sanitized data. The function accepts two arguments: The raw data returned from the server and the 'dataType' parameter.
- dataType (default:
Intelligent Guess (xml, json, script, or html)
)Type: StringThe type of data that you're expecting back from the server. If none is specified, jQuery will try to infer it based on the MIME type of the response (an XML MIME type will yield XML, in 1.4 JSON will yield a JavaScript object, in 1.4 script will execute the script, and anything else will be returned as a string). The available types (and the result passed as the first argument to your success callback) are:"xml"
: Returns a XML document that can be processed via jQuery."html"
: Returns HTML as plain text; included script tags are evaluated when inserted in the DOM."script"
: Evaluates the response as JavaScript and returns it as plain text. Disables caching by appending a query string parameter,_=[TIMESTAMP]
, to the URL unless thecache
option is set totrue
. Note: This will turn POSTs into GETs for remote-domain requests."json"
: Evaluates the response as JSON and returns a JavaScript object. Cross-domain"json"
requests that have a callback placeholder, e.g.?callback=?
, are performed using JSONP unless the request includesjsonp: false
in its request options. The JSON data is parsed in a strict manner; any malformed JSON is rejected and a parse error is thrown. As of jQuery 1.9, an empty response is also rejected; the server should return a response ofnull
or{}
instead. (See json.org for more information on proper JSON formatting.)"jsonp"
: Loads in a JSON block using JSONP. Adds an extra"?callback=?"
to the end of your URL to specify the callback. Disables caching by appending a query string parameter,"_=[TIMESTAMP]"
, to the URL unless thecache
option is set totrue
."text"
: A plain text string.- multiple, space-separated values: As of jQuery 1.5, jQuery can convert a dataType from what it received in the Content-Type header to what you require. For example, if you want a text response to be treated as XML, use
"text xml"
for the dataType. You can also make a JSONP request, have it received as text, and interpreted by jQuery as XML:"jsonp text xml"
. Similarly, a shorthand string such as"jsonp xml"
will first attempt to convert from jsonp to xml, and, failing that, convert from jsonp to text, and then from text to xml.
- errorA function to be called if the request fails. The function receives three arguments: The jqXHR (in jQuery 1.4.x, XMLHttpRequest) object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides
null
) are"timeout"
,"error"
,"abort"
, and"parsererror"
. When an HTTP error occurs,errorThrown
receives the textual portion of the HTTP status, such as "Not Found" or "Internal Server Error." As of jQuery 1.5, theerror
setting can accept an array of functions. Each function will be called in turn. Note: This handler is not called for cross-domain script and cross-domain JSONP requests. This is an Ajax Event. - global (default:
true
)Type: BooleanWhether to trigger global Ajax event handlers for this request. The default istrue
. Set tofalse
to prevent the global handlers likeajaxStart
orajaxStop
from being triggered. This can be used to control various Ajax Events. - headers (default:
{}
)Type: PlainObjectAn object of additional header key/value pairs to send along with requests using the XMLHttpRequest transport. The headerX-Requested-With: XMLHttpRequest
is always added, but its defaultXMLHttpRequest
value can be changed here. Values in theheaders
setting can also be overwritten from within thebeforeSend
function. (version added: 1.5) - ifModified (default:
false
)Type: BooleanAllow the request to be successful only if the response has changed since the last request. This is done by checking the Last-Modified header. Default value isfalse
, ignoring the header. In jQuery 1.4 this technique also checks the 'etag' specified by the server to catch unmodified data. - isLocal (default:
depends on current location protocol
)Type: BooleanAllow the current environment to be recognized as "local," (e.g. the filesystem), even if jQuery does not recognize it as such by default. The following protocols are currently recognized as local:file
,*-extension
, andwidget
. If theisLocal
setting needs modification, it is recommended to do so once in the$.ajaxSetup()
method. (version added: 1.5.1) - jsonpOverride the callback function name in a JSONP request. This value will be used instead of 'callback' in the 'callback=?' part of the query string in the url. So
{jsonp:'onJSONPLoad'}
would result in'onJSONPLoad=?'
passed to the server. As of jQuery 1.5, setting thejsonp
option tofalse
prevents jQuery from adding the "?callback" string to the URL or attempting to use "=?" for transformation. In this case, you should also explicitly set thejsonpCallback
setting. For example,{ jsonp: false, jsonpCallback: "callbackName" }
. If you don't trust the target of your Ajax requests, consider setting thejsonp
property tofalse
for security reasons. - jsonpCallbackSpecify the callback function name for a JSONP request. This value will be used instead of the random name automatically generated by jQuery. It is preferable to let jQuery generate a unique name as it'll make it easier to manage the requests and provide callbacks and error handling. You may want to specify the callback when you want to enable better browser caching of GET requests. As of jQuery 1.5, you can also use a function for this setting, in which case the value of
jsonpCallback
is set to the return value of that function. - method (default:
'GET'
)Type: String - mimeTypeType: StringA mime type to override the XHR mime type. (version added: 1.5.1)
- passwordType: StringA password to be used with XMLHttpRequest in response to an HTTP access authentication request.
- processData (default:
true
)Type: BooleanBy default, data passed in to thedata
option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option tofalse
. - scriptCharsetType: StringOnly applies when the "script" transport is used (e.g., cross-domain requests with "jsonp" or "script" dataType and "GET" type). Sets the
charset
attribute on the script tag used in the request. Used when the character set on the local page is not the same as the one on the remote script. - statusCode (default:
{}
)Type: PlainObjectAn object of numeric HTTP codes and functions to be called when the response has the corresponding code. For example, the following will alert when the response status is a 404:
1234567$.ajax({statusCode: {404: function() {alert( "page not found" );}}});cs (version added: 1.5)If the request is successful, the status code functions take the same parameters as the success callback; if it results in an error (including 3xx redirect), they take the same parameters as the
error
callback. - successA function to be called if the request succeeds. The function gets passed three arguments: The data returned from the server, formatted according to the
dataType
parameter or thedataFilter
callback function, if specified; a string describing the status; and thejqXHR
(in jQuery 1.4.x, XMLHttpRequest) object. As of jQuery 1.5, the success setting can accept an array of functions. Each function will be called in turn. This is an Ajax Event. - timeoutType: NumberSet a timeout (in milliseconds) for the request. A value of 0 means there will be no timeout. This will override any global timeout set with $.ajaxSetup(). The timeout period starts at the point the
$.ajax
call is made; if several other requests are in progress and the browser has no connections available, it is possible for a request to time out before it can be sent. In jQuery 1.4.x and below, the XMLHttpRequest object will be in an invalid state if the request times out; accessing any object members may throw an exception. In Firefox 3.0+ only, script and JSONP requests cannot be cancelled by a timeout; the script will run even if it arrives after the timeout period. - traditionalType: BooleanSet this to
true
if you wish to use the traditional style of param serialization. - type (default:
'GET'
)Type: StringAn alias formethod
. You should usetype
if you're using versions of jQuery prior to 1.9.0. - url (default:
The current page
)Type: StringA string containing the URL to which the request is sent. - usernameType: StringA username to be used with XMLHttpRequest in response to an HTTP access authentication request.
- xhr (default:
ActiveXObject when available (IE), the XMLHttpRequest otherwise
)Type: Function()Callback for creating the XMLHttpRequest object. Defaults to the ActiveXObject when available (IE), the XMLHttpRequest otherwise. Override to provide your own implementation for XMLHttpRequest or enhancements to the factory. - xhrFieldsType: PlainObject
An object of fieldName-fieldValue pairs to set on the native
XHR
object. For example, you can use it to setwithCredentials
totrue
for cross-domain requests if needed.123456$.ajax({url: a_cross_domain_url,xhrFields: {withCredentials: true}});cs In jQuery 1.5, the
(version added: 1.5.1)withCredentials
property was not propagated to the nativeXHR
and thus CORS requests requiring it would ignore this flag. For this reason, we recommend using jQuery 1.5.1+ should you require the use of it.
Description
모든 Ajax 호출은 다른 ajaxSetup호출에 의해 설정이 변경되기 전까지
전역설정을 유지하고 적용할 수 있게된다
여기서 모든 Ajax 호출이라는 것은 $.ajax, $.get() 같은 모든 호출자에 대에 적용되며
ajaxSetup을 사용하는 경우 전역설정을 염두해두지 않으면 바람직하지 않은 동작이
발생할 수 있으므로, 이 API 사용을 권장하지 않는다.
code
1) url 설정을 전역적으로 설정한경우, Ajax를 사용하기 전에 url 매개변수를 기본값으로 사용한다.
2) 이제 Ajax 메서드를 사용하는 경우, url을 입력하지 않았더라도
요청이 있을때마다 "ping.php" url이 자동으로 사용된다.
1 2 3 4 | $.ajax({ // url not set here; uses ping.php data: { "name": "Dan" } }); | cs |
3) 마지막 예제는 실제 셋업과 요청을 동시에 사용하는 모습이다.
url : "/xmlhttp/" 로 도메인을 설정.
global : Ajax 이벤트 핸들러를 전역적으로 트리거할지 여부를 결정한다.
ex) ajaxStart나 ajaxStop같은 핸들러를 트리거하지 못하게 설정할 수 있다.
이 global속성은 ajax의 이벤트를 제어할 때 사용한다.
type : get, post 같은 method를 적용.
1 2 3 4 5 6 | $.ajaxSetup({ url: "/xmlhttp/", global: false, type: "POST" }); $.ajax({ data: myData }); | cs |
'■ 프론트엔드 ■ > jQuery' 카테고리의 다른 글
썸네일 미리보기 - 모니터 사사분면 처리하기 (0) | 2020.10.11 |
---|---|
tabulator 자주쓰는 고급옵션 (0) | 2018.12.18 |
tabulator 를 이용한 테이블안에 테이블 띄우기 by ajax (0) | 2018.07.09 |
img가 로드되고 난 이후에 w,h 반환받고 이미지 비율에 따른 계산하기 (0) | 2016.08.30 |
jquery context 라이브러리에서 메뉴 분기처리하여 보이고 추가하고 삭제하기.. (0) | 2016.08.25 |