gpt4 book ai didi

jquery ajax - 为每个 ajax 请求添加一个公共(public)参数

转载 作者:行者123 更新时间:2023-12-01 04:12:15 28 4
gpt4 key购买 nike

我想在全局的每个ajax请求上添加一个参数。因此尝试使用ajaxSend。但设置中没有 data 对象(第三个参数)。有没有办法在每个请求上添加公共(public)参数。请求可以是任何类型(GET、POST 等)。

我尝试过这样的。

$( document ).ajaxSend(function(event, jqxhr, settings) {
//i have to manipulate data object here. So i can add an additional param.
//OR i need equivalent to this.
});

最佳答案

看看ajaxPrefilter

$.ajaxPrefilter(function( options, originalOptions, jqXHR ) {
// Modify options, control originalOptions, store jqXHR, etc
});

它将允许您在发出请求之前处理请求并更新任何选项

关于jquery ajax - 为每个 ajax 请求添加一个公共(public)参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18998562/

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