MVC DisplayFor函数 - 如何找出使用的模板?

时间:2014-08-04 06:40:27

标签: c# asp.net-mvc

我有以下问题:

@Html.DisplayFor(m => m.PkID)

(其中PkID的类型为long)失败,但出现以下异常:

[InvalidOperationException: The model item passed into the dictionary is of type 'System.Int64', but this dictionary requires a model item of type 'System.String'.]
   System.Web.Mvc.ViewDataDictionary`1.SetModel(Object value) +378
   System.Web.Mvc.ViewDataDictionary.set_Model(Object value) +47
   System.Web.Mvc.ViewDataDictionary..ctor(ViewDataDictionary dictionary) +614
   System.Web.Mvc.ViewDataDictionary`1..ctor(ViewDataDictionary viewDataDictionary) +37
   System.Web.Mvc.WebViewPage`1.SetViewData(ViewDataDictionary viewData) +98
   System.Web.Mvc.WebViewPage.set_ViewData(ViewDataDictionary value) +39
   System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) +425
   System.Web.Mvc.BuildManagerCompiledView.Render(ViewContext viewContext, TextWriter writer) +382
   System.Web.Mvc.Html.TemplateHelpers.ExecuteTemplate(HtmlHelper html, ViewDataDictionary viewData, String templateName, DataBoundControlMode mode, GetViewNamesDelegate getViewNames, GetDefaultActionsDelegate getDefaultActions) +1037
   System.Web.Mvc.Html.TemplateHelpers.TemplateHelper(HtmlHelper html, ModelMetadata metadata, String htmlFieldName, String templateName, DataBoundControlMode mode, Object additionalViewData, ExecuteTemplateDelegate executeTemplate) +1621
   System.Web.Mvc.Html.TemplateHelpers.TemplateHelper(HtmlHelper html, ModelMetadata metadata, String htmlFieldName, String templateName, DataBoundControlMode mode, Object additionalViewData) +94
   System.Web.Mvc.Html.TemplateHelpers.TemplateFor(HtmlHelper`1 html, Expression`1 expression, String templateName, String htmlFieldName, DataBoundControlMode mode, Object additionalViewData, TemplateHelperDelegate templateHelper) +225
   System.Web.Mvc.Html.TemplateHelpers.TemplateFor(HtmlHelper`1 html, Expression`1 expression, String templateName, String htmlFieldName, DataBoundControlMode mode, Object additionalViewData) +140
   System.Web.Mvc.Html.DisplayExtensions.DisplayFor(HtmlHelper`1 html, Expression`1 expression) +92

我们的项目中有很多DisplayTemplates和EditorTemplates,我确信使用其中一个而不是默认值,但我需要知道选择了哪个模板(不正确),以便我可以修复内容。

如何找出框架选择的模板?在Visual Studio 2013中使用调用堆栈没有帮助,因为我只获得了具有模板名称的方法的反编译汇编代码(System.Web.Mvc.Html.TemplateHelpers.ExecuteTemplate)。

2 个答案:

答案 0 :(得分:2)

在Visual Studio中,转到Tools > Options > Debugging并取消选中Step over properties and operators (Managed Only)

然后在@Html.DisplayFor(m => m.PkID)上添加断点。它可能会涉及很多其他的东西,但最终会进入模板

答案 1 :(得分:0)

对我来说,确定执行哪个模板的最佳方法是了解如何在MVC框架中处理显示和编辑器模板。您应该检查几个不同的选项

  • 您在DisplayFor调用中明确指定了模板名称(在您的情况下不是选项)
  • 您在PkID上使用UIHintAttribute来指示框架使用哪个模板
  • 您在Views / ControllerName / DisplayTemplates
  • 下有模板
  • 您将模板置于Views / Shared / DisplayTemplates

请注意,即使模板放置在plysical位置但从visual studio解决方案中排除,它仍将被渲染。