gpt4 book ai didi

javascript - jquery中options和originalOptions的区别

转载 作者:行者123 更新时间:2023-11-28 08:35:53 26 4
gpt4 key购买 nike

ajaxPrefilter中的options和originalOptions有什么区别?我阅读了文档,但我仍然对其中的差异感到困惑。

最佳答案

options 是请求选项,而originalOptions 是您传入$.ajax 的原始选项。

$.ajaxPrefilter(function( options, originalOptions, jqXHR ) {

// here options will have all the request information
{url : 'test.html',
type: "GET",
isLocal: false,
global: true,
processData: true,
hasContent: false,
jsonp: "callback",
jsonpCallback: function () { ... },
responseFields: ......
… and a lot more

// while originalOptions will be exactly the same as the object passed
// to $.ajax below
{url : 'test.html', dataType: 'html'}
});

$.ajax({
url : 'test.html',
dataType: 'html'
});

关于javascript - jquery中options和originalOptions的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21198234/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com