我在部署的软件上收到上述错误消息,我的问题是在运行本地主机时没有出现错误。
我已经检查过是否在本地主机和服务器上的json中输入了有效数据,但我仍然收到此错误,因为json.parse正在尝试解析html。我不知道有没有人可以帮助我弄清楚我的控制器和我的javascript之间的json发生了什么?
控制器:
public ActionResult UserStatuses_Read([DataSourceRequest]DataSourceRequest request, string userName)
{
try
{
throw new DivideByZeroException();
return Json("Hello World");
}
catch (Exception e)
{
ExceptionContext filterContext = new ExceptionContext();
HttpContext.Response.StatusCode = 500;
return Json(new
{
errorCode = (HttpContext.Response.StatusCode),
Title = "Error",
Details = e.Message
});
}
}
使用Javascript:
function onError(args, status) {
var kendoNotification = $("#Notification").data("kendoNotification");
var errorMessage = JSON.parse(args.xhr.responseText);
kendoNotification.show({
title: errorMessage.Title,
message: errorMessage.Details
}, "error");
};
额外信息:上面的代码应该在出现错误时显示通知。正如我上面提到的,当通过本地主机运行时,这种方法很有效,但是当通过我们的服务器运行时,正在解析的数据是下面显示的html代码。为什么我的错误通知导致错误?任何帮助将不胜感激。提前谢谢。
来自JSON的HTML:
<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
<html xmlns=\"http://www.w3.org/1999/xhtml\">
<head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"/>
<title>500 - Internal server error.</title>
<style type=\"text/css\"><!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;}
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;}
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;}
#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:\"trebuchet MS\", Verdana, sans-serif;color:#FFF;
background-color:#555555;}
#content{margin:0 0 0 2%;position:relative;}
.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
--></style>
</head>
<body>
<div id=\"header\"><h1>Server Error</h1></div>
<div id=\"content\">
<div class=\"content-container\"><fieldset>
<h2>500 - Internal server error.</h2>
<h3>There is a problem with the resource you are looking for, and it cannot be displayed.</h3>
</fieldset></div>
</div>
</body>
</html>
答案 0 :(得分:1)
根据您的回复,我将说明您本地主机上的路径与远程服务器上的路径不同。在本地Web服务器上运行代码时,路径通常类似于http://localhost:port/page/parameters。但是,当您的代码在远程服务器上运行时,路径类似于http://servername/applicationname/page/parameters。
检查以确保视图和javascript中的任何链接(图像,页面等)都有一种方法可以将应用程序名称添加到它们中,以便它们可以在localhost和远程服务器上工作。
答案 1 :(得分:1)
当你抛出500错误时,iis包装了html中返回的所有内容,因此你的json将在html中丢失。
尝试在设置错误代码的地方添加以下代码行。
Response.TrySkipIisCustomErrors = true;
这应该强制你的json通过并允许你在你自己的自定义错误处理程序中使用它。