jQuery ajax的contents参数的作用是什么?

文档解释

根据文档的意思应该是当把一个自定义的dataType选项类型转换为一个已知的类型的时候需要使用contents参数

我按照文档的例子写了一下,只执行"text mycustomtype"这个属性定义的函数,根本不执行"mycustomtype json"这个属性定义的函数,代码如下

    $.ajax({
        url: 'Home/Index',
        type: 'post',
        dataType: 'mycustomtype',
        contents: {
            mycustomtype: /mycustomtype/
        },
        converters: {
            'text mycustomtype': true,
            'mycustomtype json': function () {
                console.log('converters')
            }
        }
    })

求解,是我理解有问题?还是文档给的例子我没看懂?

当然,最主要的是contents这个参数的作用是什么?

阅读 3.8k
2 个回答

同问。。。。。。
这三个参数,怎么用呢?规则到底是什么,糊涂了。。

jQuery.ajaxSetup({
  accepts: {
    script: "text/javascript, application/javascript"
  },
  contents: {
    script: /javascript/
  },
  converters: {
    "text script": jQuery.globalEval
  }
});
$.ajax({
        url: '/path/to/file',
        type: 'default GET (Other values: POST)',
        dataType: 'default: Intelligent Guess (Other values: xml, json, script, or html)',
        data: {param1: 'value1'},
    })
    .done(function() {
        console.log("success");
    })
    .fail(function() {
        console.log("error");
    })
    .always(function() {
        console.log("complete");
    });

contents没什么卵用

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进