最初に、次のような拡張メソッドを作成する必要があります。
public class ObjectExtensions
{
public static string Item<TItem, TMember>(this TItem obj, Expression<Func<TItem, TMember>> expression)
{
if (expression.Body is MemberExpression)
{
return ((MemberExpression)(expression.Body)).Member.Name;
}
if (expression.Body is UnaryExpression)
{
return ((MemberExpression)((UnaryExpression)(expression.Body)).Operand).Member.Name;
}
if (expression.Body is ParameterExpression)
{
return expression.Body.Type.Name;
}
throw new InvalidOperationException();
}
}
次のように sth を記述すると、プロパティの Name が抽出されます。@Html.TextBoxFor(m => m.Model1.field1)
次に、次のように使用できます。
Html.TextBoxFor(m => m.Model1.field1,
new { @class = "login-input",
@name="Name",
@value = Model.Item(m => m.Model1.field1) })
再度呼び出したくない場合は、より複雑なm => m.Model1.field1
バージョンのメソッドを宣言する必要がありますが、必要に応じて詳細を提供できます。TextBoxFor
これは、 Githubのコード ベースのサンプルです。
public static class HtmlHelperExtensionForEditorForDateTime
{
public static MvcHtmlString Editor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression)
{
ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, html.ViewData);
string propname = html.ViewData.Model.Item(expression);
string incomingValue = null;
var httpCookie = html.ViewContext.RequestContext.HttpContext.Request.Cookies["lang"];
if (metadata.Model is DateTime && (httpCookie.IsNull() || httpCookie.Value == Cultures.Persian))
incomingValue = PersianCalendarUtility.ConvertToPersian(((DateTime)metadata.Model).ToShortDateString());
if (string.IsNullOrEmpty(incomingValue))
return html.TextBox(propname, null, new { @class = "datepicker TextField" });
return html.TextBox(propname, incomingValue, new { @class = "datepicker TextField"});
}
}