gpt4 book ai didi

c# - 使用 EditorTemplate 时出现 id & name 错误

转载 作者:行者123 更新时间:2023-11-30 16:25:38 24 4
gpt4 key购买 nike

我花了大约 3 个小时才确定为什么会发生以下(已解释)错误;最后我确定这是一个 mvc 错误。想征求大家的意见。

我创建了一个编辑器模板并将其放在 ~/Shared/EditorTemplates 文件夹下。而且我小心地使用文件名与类型名相等(因为我不想将第二个参数与“@Html.EditorFor”辅助方法一起使用)。结果编辑器模板工作正常:除了回传;我肯定无法从模型中获取值,因为模型始终为空。我尝试更改输入的 ID 和名称并仔细选择并回发:它工作正常。

所以;问题是:当我使用 editorTemplate 时,它​​给出“Question.[0].QuestionContext”作为名称,“Question__0_QuestionContext”作为输入和选择的 id;但是我期待“Question[0].QuestionContext”作为名称,“Question_0__QuestionContext”作为 id。

然后我意识到我在 EditorTemplate 中使用了@foreach。然后我切换回@for 但没有任何改变。您可以在下面找到模板:

@using DenemeMvc3Application3.Helpers;
@model DenemeMvc3Application3.Controllers.LocalizedNameViewModels

<table>
<thead>
<tr>
<td>@Html.LabelFor(modelItem => modelItem.ElementAtOrDefault(0).LanguageDropDownList)</td>
<td>@Html.LabelFor(modelItem => modelItem.ElementAtOrDefault(0).Value)</td>
</tr>
</thead>
<tbody>
@for (int index = 0; index < Model.Count; index++)
{
@Html.EditorFor(modelItem => modelItem[index])
}
</tbody>
</table>

因此,我通过在编辑器模板外部和 View 内部声明 foreach 循环并将编辑器模板仅用于单个项目,将我的模板更改为更简单的模板。它奏效了。因此,我通过使用反射器对模板如何在 mvc3 上工作进行了小调查;我发现了我认为的错误:

问题是由 System.Web.Mvc.TemplateInfo 类的 public string GetFullHtmlFieldName(string partialFieldName) 方法引起的,该方法被 System.Web.Mvc.Html.SelectExtensions 类的私有(private)静态 MvcHtmlString SelectInternal(this HtmlHelper htmlHelper, string optionLabel,字符串名称、IEnumerable selectList、bool allowMultiple、IDictionary htmlAttributes) 方法。因此,每当我们在 foreach 或 EditorTemplate 中的 for 循环中使用 @Html.DropDownListFor(/blah blah/) 时,我们都会收到错误。

我还想向您展示下面的错误代码以澄清:

    // TemplateInfo method
public string GetFullHtmlFieldName(string partialFieldName)
{
/*Here's the extra dot: causing the error.*/
return (this.HtmlFieldPrefix + "." + (partialFieldName ?? string.Empty)).Trim(new char[] { '.' });
}

// SelectExtensions method
private static MvcHtmlString SelectInternal(this HtmlHelper htmlHelper, string optionLabel, string name, IEnumerable<SelectListItem> selectList, bool allowMultiple, IDictionary<string, object> htmlAttributes)
{
/* blah blah */
string fullHtmlFieldName = htmlHelper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(name);
/* blah blah */
}

// SelectExtensions method -> @Html.DropDownListFor
private static MvcHtmlString DropDownListHelper(HtmlHelper htmlHelper, string expression, IEnumerable<SelectListItem> selectList, string optionLabel, IDictionary<string, object> htmlAttributes)
{
return htmlHelper.SelectInternal(optionLabel, expression, selectList, false, htmlAttributes);

那么,你有什么想法?

最佳答案

Then I realized that I was using @foreach inside the EditorTemplate. Then I switch back to @for but nothing changed.

如何摆脱所有循环并简单地:

@model IEnumerable<FooViewModel>
<table>
<thead>
<tr>
<td>@Html.LabelFor(modelItem => modelItem.ElementAtOrDefault(0).LanguageDropDownList)</td>
<td>@Html.LabelFor(modelItem => modelItem.ElementAtOrDefault(0).Value)</td>
</tr>
</thead>
<tbody>
@Html.EditorForModel()
</tbody>
</table>

好多了?没有循环和正确的名称和 ID。 ASP.NET MVC 会自动为模型集合的每个元素呈现编辑器模板。

和相应的编辑器模板(~/Views/Shared/EditorTemplates/FooViewModel.cshtml):

@model FooViewModel
<tr>
<td>@Html.EditorFor(x => x.SomeProperty)</td>
<td>@Html.EditorFor(x => x.SomeOtherProperty)</td>
</tr>

关于c# - 使用 EditorTemplate 时出现 id & name 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9679877/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com