作者:W你是我的小太阳 | 来源:互联网 | 2023-10-13 09:42
文档解释
根据文档的意思应该是当把一个自定义的dataType选项类型转换为一个已知的类型的时候需要使用contents参数
我按照文档的例子写了一下,只执行"text mycustomtype"这个属性定义的函数,根本不执行"mycustomtype json"这个属性定义的函数,代码如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| $.ajax({
url: 'Home/Index',
type: 'post',
dataType: 'mycustomtype',
contents: {
mycustomtype: /mycustomtype/
},
converters: {
'text mycustomtype': true,
'mycustomtype json': function () {
console.log('converters')
}
}
}) |
求解,是我理解有问题?还是文档给的例子我没看懂?
当然,最主要的是contents这个参数的作用是什么?