gpt4 book ai didi

asp.net-mvc - 如何在 EditorTemplate 中获取完全限定的成员名称?

转载 作者:行者123 更新时间:2023-12-03 00:55:52 25 4
gpt4 key购买 nike

我有一个 ASP.NET MVC 4 站点,我将嵌套属性传递给 EditorTemplate 并使用 ViewData.ModelMetadata.PropertyName 构建字段名称,但是,这会获取子项的属性名称属性,而不是我正在编辑的属性的完整点符号名称。

一个例子可以最好地说明:

给定以下类型

public class EditEntityViewModel
{
// elided
public Entity Entity { get; set}
}


public class Entity
{
// elided
public string ImageUrl { get; set; }
}

我的编辑和创建 View 如下:

@model EditEntityViewModel

<div>
@Html.EditorFor(model => model.Entity.ImageUrl , "_ImageUploader")
</div>

_ImageUploader.cshtml编辑器模板如下

@model System.String

<div class="uploader">
@Html.LabelFor(model => model)
@Html.HiddenFor(model => model)
<div data-rel="@(ViewData.ModelMetadata.PropertyName)">
<input type="file" name="@(ViewData.ModelMetadata.PropertyName)Upload" />
</div>
</div>

渲染后的 HTML 看起来像这样

<div>
<div class="uploader">
<label for="Entity_ImageUrl">Image</label>
<input id="Entity_ImageUrl" name="Entity.ImageUrl" type="hidden"/>
<div data-rel="ImageUrl"> <!-- Problem -->
<input type="file" name="ImageUrlUpload" /><!-- Problem -->
</div>
</div>
</div>

注意第 5 行和第 6 行,我在其中调用了 ViewData.ModelMetadata.PropertyName,我只获取子属性名称 "ImageUrl" 但我想要“Entity.ImageUrl”。如何获得这个完全限定名称?

最佳答案

使用@Html.NameFor(model => model)/@Html.NameForModel()而不是ViewData.ModelMetadata.PropertyName,这个方法应该给你想要的名字。它是 Mvc3Futures 的一部分打包并添加到 MVC4 中。

关于asp.net-mvc - 如何在 EditorTemplate 中获取完全限定的成员名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15654716/

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