gpt4 book ai didi

javascript - jQuery AJAX POST - 数据未发送

转载 作者:搜寻专家 更新时间:2023-10-30 21:01:28 24 4
gpt4 key购买 nike

$.ajax({
url: "/Configuration/AddServersAdvancedSelect",
type: "POST",
data: { selectedOUs: that.getByDataSelected() },
async: false,
dataType: "html",
success: result => {
cont.setTabContentFromHtmlString(result, 1);
cont.tabClicked($("td[data-value='1']").get(0));
},
error: (xhr, ajaxOptions, thrownError) => {
//
}
});

编辑:我今天回来工作,它神奇地开始工作了。我想那是什么

这是我对服务器的 ajax 请求。由于某种原因,数据没有被选中。 getByDataSelected 函数就像它应该的那样工作并返回好的值。 Controller 方法的名称为 selectedOUs,一切都匹配。有人知道为什么这个 ajax POST 不发送数据吗?

最佳答案

jQuery 将数据参数定义为

Type: PlainObject or String or Array

Data to be sent to theserver. It is converted to a query string, if not already a string.It's appended to the url for GET-requests. See processData option toprevent this automatic processing.

Object must be Key/Value pairs.

If value is an Array, jQuery serializes multiple values with same keybased on the value of the traditional setting (described below).

我敢打赌,如果未发送,that.getByDataSelected() 的返回值与预期参数不一致。

在这种情况下,您的错误函数应该收到内部服务器错误 [500]

关于javascript - jQuery AJAX POST - 数据未发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26043089/

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