如何使用ajax调用部分视图?
我正在使用以下代码,但它会出错:
$('#Get').click(function() {
$.ajax({
type: 'POST',
url: '@Url.Action("GetUser","Users")',
data: { no: 10 },
complete: function (xhr, status) {
// status = Error
},
success: function (result, status, xhr) {
}
});
});
我的行动结果:
public ActionResult GetUser(int no)
{
var User=new AllUsers
{
UserName = "test"
};
return PartialView("_GetUser",User);
}
错误:内部服务器错误