我一直关注this guide创建自定义显示属性(特别是额外的html属性)以应用于我的ViewModel中的属性。我在EditorTemplates文件夹中覆盖了String和Boolean。编辑器模板检查是否已设置值/已使用显示属性 - 并添加其他html属性。
我在执行编辑操作时遇到了布尔覆盖。无论是否将属性应用于字符串,ViewModel始终使用正确的现有数据进行映射。任何其他表单输入类型都不是这样,因为通过更改TextBoxFor中的type属性来编写模板的方式。
我一直在写这个主要是因为我一直在挖掘淘汰赛,并想要一种简单的方法将数据绑定属性应用于强类型视图 - 如果有更好的方法请告诉我!
属性代码:
public class Knockout : Attribute
{
public string DataBind { get; set; }
public string InputType { get; set; }
/*
Example:
Knockout("checked: showUploader", "checkbox")
Adds the HTML attributes data-bind="checked: showUploader" type="checkbox"
*/
public Knockout(string dataBind, string inputType)
{
this.DataBind = dataBind;
this.InputType = inputType;
}
public Dictionary<string, object> OptionalAttributes()
{
var options = new Dictionary<string, object>();
if(!string.IsNullOrWhiteSpace(DataBind))
{
options.Add("data-bind", DataBind);
}
if (!string.IsNullOrWhiteSpace(InputType))
{
options.Add("type", InputType);
}
return options;
}
}
模板代码
@using CumbriaMD.Infrastructure.ViewModels.DisplayAttributes
@{
var key = "Knockout";
}
@if (ViewData.ModelMetadata.AdditionalValues.ContainsKey(key))
{
var knockout = ViewData.ModelMetadata.AdditionalValues[key] as Knockout;
@Html.TextBoxFor(model => model, knockout.OptionalAttributes())
}
else
{
/*
When the attribute is not present, the default action is the following - which seems to
be overriding the data mapped from the database:
*/
@Html.TextBoxFor(model => model, new { type="checkbox" })
}
答案 0 :(得分:0)
找到嵌套在这个beauty of a question中的答案!
我的布尔值工作模板现在看起来像:
@using CumbriaMD.Infrastructure.ViewModels.DisplayAttributes
@{
var key = "Knockout";
bool? value = null;
if(ViewData.Model != null)
{
value = Convert.ToBoolean(ViewData.Model, System.Globalization.CultureInfo.InvariantCulture);
}
}
@if (ViewData.ModelMetadata.AdditionalValues.ContainsKey(key))
{
var knockout = ViewData.ModelMetadata.AdditionalValues[key] as Knockout;
@Html.CheckBox("", value ?? false, knockout.OptionalAttributes())
}
else
{
@Html.CheckBox("", value ?? false, new { @class = "check-box" })
}