gpt4 book ai didi

javascript - 如何在JavaScript函数中使用Controller函数?

转载 作者:行者123 更新时间:2023-11-28 12:32:03 25 4
gpt4 key购买 nike

我有一个 JavaScript 函数:

function notificationDivPressed(element,userId,numberOfUsers) {
$.ajax({
url: '/Notification/ChangeReadStatus',
type: "POST", cache: false,
data: { arg: userId },
success: function (data) {
//some code
}
});

这是来自 Controller 的 ChangeReadStatus() 函数:

[HttpPost]
public void ChangeReadStatus(string id)
{
//some code
}

为什么 ChangeReadStatus 中的“id”值等于“null”?

最佳答案

因为您的 HTTP 请求传递的是 arg,而不是 id

如果要传递参数,需要以相同的名称传递。

关于javascript - 如何在JavaScript函数中使用Controller函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21048142/

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