有没有办法获得$ .ajax的默认对象

时间:2011-07-28 18:29:12

标签: jquery

是否可以获取与$.ajax函数关联的所有默认值。

所以它会返回这样的东西:

{
    global:true,
    headers:{},
    ifModified:false,
    type:"GET",
    url:"the current page url",
    etc....
}

2 个答案:

答案 0 :(得分:8)

通过查看source code,我相信jQuery.ajaxSettings中可以找到(当前)默认值,当然也可以$.ajaxSettings找到。所以如果你没有改变它们,你应该可以从那里得到它们。

请注意,如果您已经更改了它们,例如使用$.ajaxSetup实用程序方法,您将获得您创建的新默认值,而不是jQuery库中的固有默认值。< / p>

同时查看源代码,似乎默认值如下:

ajaxSettings: {
    url: ajaxLocation,
    isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
    global: true,
    type: "GET",
    contentType: "application/x-www-form-urlencoded",
    processData: true,
    async: true,
    /*
    timeout: 0,
    data: null,
    dataType: null,
    username: null,
    password: null,
    cache: null,
    traditional: false,
    headers: {},
    */

    accepts: {
        xml: "application/xml, text/xml",
        html: "text/html",
        text: "text/plain",
        json: "application/json, text/javascript",
        "*": "*/*"
    },

    contents: {
        xml: /xml/,
        html: /html/,
        json: /json/
    },

    responseFields: {
        xml: "responseXML",
        text: "responseText"
    },

    // List of data converters
    // 1) key format is "source_type destination_type" (a single space in-between)
    // 2) the catchall symbol "*" can be used for source_type
    converters: {

        // Convert anything to text
        "* text": window.String,

        // Text to html (true = no transformation)
        "text html": true,

        // Evaluate text as a json expression
        "text json": jQuery.parseJSON,

        // Parse text as xml
        "text xml": jQuery.parseXML
    }
},

答案 1 :(得分:0)

它们列在jQuery文档中:

http://api.jquery.com/jQuery.ajax/