gpt4 book ai didi

asp.net - $.post 与 $.ajax

转载 作者:行者123 更新时间:2023-12-03 21:57:53 24 4
gpt4 key购买 nike

我正在尝试使用 $.post 方法来调用 Web 服务,我已经使用 $.ajax 方法使其正常工作:

$.ajax({
type: "POST",
url: "StandardBag.aspx/RemoveProductFromStandardBag",
data: "{'standardBagProductId': '" + standardBagProductId.trim() + "' }",
success: function(){
$((".reload")).click();
},
dataType: "json",
contentType: "application/json"
});

但是当我将相同的方法移动到 $.post 方法中时,它将不起作用:

$.post("StandardBag.aspx/RemoveProductFromStandardBag",
"{'standardBagProductId': '" + standardBagProductId.trim() + "' }",
function () { $((".reload")).click(); },
"json"
);

我错过了什么?

最佳答案

它不起作用,因为在您的 $.post 方法中,您无法将请求的内容类型设置为 application/json。因此,无法使用 $.post 调用 ASP.NET PageMethod,因为 ASP.NET PageMethod 需要 JSON 请求。您必须使用$.ajax

我只需修改数据以确保它是正确的JSON编码:

$.ajax({
type: "POST",
url: "StandardBag.aspx/RemoveProductFromStandardBag",
data: JSON.stringify({ standardBagProductId: standardBagProductId.trim() }),
success: function() {
$(".reload").click();
},
dataType: "json",
contentType: "application/json"
});

关于asp.net - $.post 与 $.ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7528757/

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