似乎是一件简单的事情,但我花了一整天时间浏览整个网络上的帖子,几乎没有追索权!请帮忙。我有一个简单的请求要发布到 MVC 控制器...
$(document).ready(function () {
$('#json_request').on("click", function () {
// send request to server for menu json data
$.ajax({
type: "POST",
url: location.protocol + "//" + location.host + "/Tablet/Menu",
data: { restaurantId: $('#restaurantId option:selected').val(), mealSessionId: $('#mealSessionId option:selected').val() },
success: function (menuData) {alert(menuData); },
error: function () { alert("failed"); }
});
});
});
请求只是不会到达控制器!当我将请求作为 Html 表单发布时,该应用程序运行良好。它也适用于 Visual Studio 开发服务器。IIS 7.0 / ASP.NET / MVC 4 出现 404 错误。可能是 contentType: application/x-www-form-urlencoded 没有通过 http-protocol 过滤器。我必须专门设置这些吗?如何?谢谢你的帮助。我没有将请求作为 json 发送,所以我没有尝试 contentType: application/json。
控制器/动作:
[HttpPost]
public ActionResult Menu(short restaurantId, short mealSessionId)
{
try
{
MenuInput menuInput = new MenuInput(restaurantId, mealSessionId);
menuInput.LoadMenu();
if (Request.IsAjaxRequest())
{
MemoryStream ms = new MemoryStream();
menuInput.AsJson(ms);
string jsonString = Encoding.UTF8.GetString(ms.ToArray());
JsonResult result = Json(jsonString, "text/x-json");
ms.Close();
return result;
}
else
{
return View("MenuInformation", menuInput);
}
}
catch (Exception ex)
{
System.Console.Write(ex.ToString());
return View();
}
}