我正在使用一条简单的路线
routes.MapRoute(
"Default2", // Route name
"{cliurl}/{id}", // URL with parameters
new { cliurl = "none", controller = "ABook", action = "Index", id = "none" } // Parameter defaults
);
routes.MapRoute(
"Default", // Route name
"{cliurl}/{controller}/{action}/{id}", // URL with parameters
new { cliurl = "none", controller = "ABook", action = "Index", id = "none" } // Parameter defaults
);
当我调试网站(VS2010 SP1)时,我的ABook
控制器中有一个断点,Index
动作方法只包含:
//
// GET: /ABook/
public ActionResult Index()
{
if (currentClient == null)
return RedirectToAction("Empty");
return View();
}
//
// GET: /Empty/
public ActionResult Empty()
{
return View();
}
当我在浏览器中插入它时,事情就是这样:
http://localhost:14951/client_name/hashed_id
我在断点<中获得 3次休息。
我怎样才能看到世界上发生了什么?为什么3次我刚刚请求1,浏览器请求的是什么?
我只能得到路线参数,我确实得到第一个正确的,但是第二个和第三个使用默认值,我试图浏览RequestContext
,我看不到任何有用的东西:(
只想知道是否有办法真正了解所要求的内容。
答案 0 :(得分:2)
答案 1 :(得分:1)
如果您在控制器内部有断点,您可以使用手表,只需创建新手表即可。输入Request
并搜索...
答案 2 :(得分:1)
在每个Controller中都存在一个名为请求的属性。它实际上是在System.Web.Mvc.Controller中定义的,它是所有控制器的超类。该属性将acutal Request对象作为HttpRequestBase返回,并公开InputStream,Headers,HttpMethod等字段,依此类推。
至于你为什么要使用索引方法3次,我确信浏览器提出的其他请求,例如图像和javascript以及其他现有文件,也是由你定义的路径处理的。简而言之,您的路由防御过于通用并处理意外请求。您可以使用Route.IgnoreRoute(“Path / to / Existing / Files”)或通过添加RouteConstraints使您的路由更具体来更正此问题。如果您想知道如何做,请发表评论。
答案 3 :(得分:0)
您可以使用fiddler查看浏览器请求的内容,也可以尝试从Nuget下载routdebugger
。
答案 4 :(得分:0)
我知道其他人对此有点嗤之以鼻......他们是对的:
使用Request
对象查找请求的内容。它可能是你的控制器不正确处理的东西。在该方法中从Request
进行调试时铲起一些输出,例如原始URL。这很可能会回答这个问题。
答案 5 :(得分:0)
作为建议,为什么不挂钩应用程序的BeginRequest
事件处理程序,这将允许您查看每个请求。还有可以检查的HttpContext.Current.Request.Url
对象
// Global.asax
public MvcApplication()
{
BeginRequest += new EventHandler(MvcApplication_BeginRequest);
}
void MvcApplication_BeginRequest(object sender, EventArgs e)
{
Debug.WriteLine("[Start] Requested Url: " + HttpContext.Current.Request.RawUrl);
}