我想创建自己的 TextBox Helper 来做一件简单的事情:用一些 div 和标签包装输入元素,如下所示:
<div class="col-xs-12">
<label>field name</label>
<div>
<input id='myId' name='MyName' type='text' value='myValue'>
</div>
</div>
在 View 中,我想这样称呼它:
@Html.TextBox("Name")
我怎样才能做到这一点?有没有办法在我的助手中调用基类?
更新:更好的解决方案
在 Krishina 回答之后,我得到了一个更好的方法,使用如下代码:
public static MvcHtmlString CliTextBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, string LabelText, object htmlAttributes)
{
var baseFormat = htmlHelper.TextBoxFor(expression, format: null, htmlAttributes: htmlAttributes);
var errors = htmlHelper.ValidationMessageFor(expression, "", new { @class = "text-danger" }).ToString();
if (!string.IsNullOrEmpty(errors))
errors = "<div>" + errors + "</div>";
var wrap = String.Format(
"<div class='col-xs-12'>" +
"<label>{0}</label>" +
"<div>{1}</div>"+
"{2}" +
"</div>", LabelText, baseFormat.ToString(), errors);
return new MvcHtmlString(wrap);
}
通过这种方式,我一直使用 TextBoxFor 来生成基本输入元素。
最佳答案
您需要为您的文本框创建一个自定义的 Html Helper,如下所示。
namespace MvcApplication.Helpers
{
public static class TextboxExtensions
{
public static HtmlString CustomTextBox(this HtmlHelper helper, string labelName, NameValueCollection parameters)
{
var returnValue = string.Empty;
if (parameters == null || parameters.Count <= 0) return new HtmlString(returnValue);
var attributes = parameters.AllKeys.Aggregate("", (current, key) => current + (key + "=" + "'" + parameters[key] + "' "));
returnValue = String.Format("<div class='col-xs-12'><label>{0}</label>" +
"<div><input " + attributes + "></div></div>", labelName);
return new HtmlString(returnValue);
}
}
}
并使用上述扩展方法,请按照下列步骤操作
在您的 MVC View 中,在顶部编写 using 语句
@using MvcApplication.Helpers
并且,编写 Html helper 如下
@Html.CustomTextBox("Name", new NameValueCollection { {"id", "myId"}, {"value", "myValue"} })
注意:您可以使用 json 或其他类型来代替 NameValueCollection。
关于c# - 带有包装器的自定义 TextBox Asp.net MVC Helper,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29108847/