2

昨天,经过广泛的测试,我得到了以下内容,可以根据ViewBag.CanEdit; 的值选择性地将 readonly 属性应用于控件。

@Html.EditorFor(m => m.Location, new { htmlAttributes = new { @class = "form-control", @readonly = (ViewBag.CanEdit == true ? Html.Raw("") : Html.Raw("readonly")) } })

基于此测试的成功,我在项目的几个部分中实施并测试了它。今天,我开始编写新的代码部分并开始实现相同的代码,结果却始终失败——每个控件都是readonly.

当我检查它们具有readonlyreadonly=readonly作为属性的控件时?然后我回到昨天重构的代码,发现同样的问题;现在每个控件都readonly不管ViewBag.CanEdit?

谁能解释为什么这昨天会奏效但今天却失败了?

4

2 回答 2

1

尝试这个

@Html.TextBoxFor(model => model.Location, !ViewBag.CanEdit 
    ? (object)new { @class = "form-control", @readonly ="readonly" } 
    : (object)new { @class = "form-control" })
于 2016-01-15T05:01:24.970 回答
1

作为一种更好的方法,我创建了这个方法,并且我在我的项目中使用它,只要我需要这样的东西。它会让你的代码更干净。

首先,将此类添加到您的项目中:

 public static class HtmlBuildersExtended
    {
        public static RouteValueDictionary ConditionalReadonly(
            bool isReadonly,
            object htmlAttributes = null)
        {
            var dictionary = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);

            if (isReadonly)
                dictionary.Add("readonly", "readonly");

            return dictionary;
        }
   }

然后您可以将代码更改为:

@Html.TextBoxFor(model => model.Location, 
      HtmlBuildersExtended.ConditionalReadonly(
          (bool)ViewBag.CanEdit, new { @class = "form-control" }));

或者如果你想使用EditorFor助手,那么:

@Html.EditorFor(model => model.Location,
             HtmlBuildersExtended.ConditionalReadonly((bool)ViewBag.CanEdit, 
                    new
                    {
                        htmlAttributes = new
                        {
                            @class = "form-control"
                        }
                    }));
于 2016-01-15T05:25:41.450 回答