I have the below script. @username
is a variable that comes from the model.
<script>
var username = "@username"
$.ajax({
url: '@Url.Action("fetchChatsForUser")',
data: { Username: username },
type: "POST",
dataType: 'JSON',
contentType: "application/json",
success: function (e) {
console.log(e);
$("#Chatroom").html(e)
},
error: function (passParams) {
console.log("Error is " + passParams);
}
})
</script>
I checked the value of username
and its not empty or null it's working. However in my controller when the fetchChatsForUser
gets called by ajax
, the data that's sent is null.
here is the controller
public IActionResult fetchChatsForUser(string Username)
{
Chat Chats = new Chat();
return PartialView("_Chatroom", Chats);
}
The string Username
in controller is always null even though im passing data in ajax. The method does get called though. What am I doing wrong here
question from:
https://stackoverflow.com/questions/65932864/ajax-post-doesnt-send-data-net-core 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…