gpt4 book ai didi

c# - 为什么我不能使用 ajax 将参数发送到操作方法?

转载 作者:太空宇宙 更新时间:2023-11-03 17:30:15 24 4
gpt4 key购买 nike

此代码无需发送参数即可运行:

$(function () {
$('#Fee').on('focus', function () {
$.ajax({
url: '@Url.Action("GetFee")',
dataType: "json",
type: "POST",
contentType: 'application/json; charset=utf-8',
cache: false,
data: { },
success: function (data) {
if (data.success) {
$('#Fee').val(data.message);
}
}
});
});
});

但是,如果我想将参数发送到 GetFee 操作方法,它就不再起作用了:

data: { bookname : 'book1' }

然后我更改了我的操作方法以接受参数:

[HttpPost]
public ActionResult GetFee(string bookname)

最佳答案

您指出:

contentType: 'application/json; charset=utf-8',

因此请确保您尊重您声称要发送到服务器的内容:

data: JSON.stringify({ bookname : 'book1' })

另一方面,如果你在你的请求中去掉这个application/json内容类型,jQuery将使用application/x-www-form-urlencoded默认然后你可以简单地使用这个:

data: { bookname : 'book1' }

关于c# - 为什么我不能使用 ajax 将参数发送到操作方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41759066/

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