Extending Ajax(扩展 Ajax)
从jQuery 1.5开始,,jQuery的Ajax实现包括预prefilters, transports和传输,让您更加灵活的扩展Ajax。如需有关这些先进功能的信息,请参阅Extending Ajax
Using Converters(使用转换器)
$.ajax()的转换器支持的数据类型映射到其它数据类型。但是,如果你想把自定义数据类型映射到一个已知的类型(json等),您必须contents 选项在响应的Content-Type和实际的数据类型之间的添加一个相关的转换函数:
$.ajaxSetup({
contents: {
mycustomtype: /mycustomtype/
},
converters: {
"mycustomtype json": function ( result ) {
// do stuff
return newresult;
}
}
});
这额外的对象是必要的,因为响应内容类型(Content-Types)和数据类型从来没有一个严格的一对一对应关系(正则表达式表示结果)。
转换一个支持的类型(例如text, json)成自定义数据类型,然后再返回,使用另一个直通转换器:
$.ajaxSetup({
contents: {
mycustomtype: /mycustomtype/
},
converters: {
"text mycustomtype": true,
"mycustomtype json": function ( result ) {
// do stuff
return newresult;
}
}
});
现在上面的代码允许通过从text 为mycustomtype ,进而,mycustomtype 转换为 json。
|