您好,登錄后才能下訂單哦!
這篇“jQuery.ajaxTransport怎么用”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“jQuery.ajaxTransport怎么用”文章吧。
Handling Custom Data Types(處理自定義數(shù)據(jù)類型)
jQuery的Ajax實(shí)現(xiàn)了一套標(biāo)準(zhǔn)的數(shù)據(jù)類型,比如text, json, xml, 和 html。
在 $.ajaxSetup() 中使用converters選項(xiàng) 來增加或修改數(shù)據(jù)類型使用$.ajax()轉(zhuǎn)換策略。
未更改的 jQuery 代碼 本身包含一個(gè)列表的默認(rèn)轉(zhuǎn)換器,這有力地說明了可以如何使用它們:
// 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
}
當(dāng)你在$.ajaxSetup()全局的指定一個(gè)converters 選項(xiàng),或者每次調(diào)用$.ajax(),這個(gè)對(duì)象將映射到默認(rèn)的轉(zhuǎn)換器,覆蓋您所指定的那些,讓其他不變。
例如,jQuery代碼使用$.ajaxSetup()添加一個(gè)“text script”轉(zhuǎn)換器:
jQuery.ajaxSetup({
accepts: {
script: "text/javascript, application/javascript"
},
contents: {
script: /javascript/
},
converters: {
"text script": jQuery.globalEval
}
});
以上就是關(guān)于“jQuery.ajaxTransport怎么用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。