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

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

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

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

解决方法

从查看 source code,我相信(当前)默认值可以在jQuery.ajaxSettings中找到,当然也可以作为$.ajaxSettings使用.所以如果你没有改变它们,你应该能够从那里获得它们.

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

另外看一下源代码,默认情况如下:

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
    }
},

相关文章

jQuery插件的种类 1、封装对象方法 这种插件是将对象方法封装起来,用于对通过选择器获取的jQuery对象进...
扩展jQuery插件和方法的作用是非常强大的,它可以节省大量开发时间。 入门 编写一个jQuery插件开始于给...
最近项目中需要实现3D图片层叠旋转木马切换的效果,于是用到了jquery.roundabout.js。 兼容性如图: ht...
一、什么是deferred对象? 开发网站的过程中,我们经常遇到某些耗时很长的javascript操作。其中,既有异...
AMD 模块 AMD(异步模块定义,Asynchronous Module Definition)格式总体的目标是为现在的开发者提供一...