gpt4 book ai didi

asp.net-mvc - mvc4 和 EF 中的 Html.EditorFor 和多行文本框

转载 作者:行者123 更新时间:2023-12-02 09:10:29 25 4
gpt4 key购买 nike

@HTMLEditorFor的标准是什么自动检测模型的数据类型是否更适合在多行文本框中显示?使用MVC4、razor和EF4.3 DatabaseFirst。我正在使用 Controller 向导支架页面进行 CRUD 操作。 Edit.cshtml 和 Create.cshtml 都使用

@Html.EditorFor(model => model.message)

显示文本框。如果我编辑脚手架 Myemail.cs 类,我可以添加一个 DataAnnotation,例如

 [DataType(DataType.MultilineText)]
public string message { get; set; }

我现在得到一个<TextArea>生成(尽管开始使用的尺寸不切实际(一行和 178px)。当 tt 模板生成模型时,这不应该是自动的吗?或者我是否需要以某种方式修改 tt 模板以假定 <TextArea> 如果字段是varchar 等等,其大小大于 100?

干杯蒂姆

最佳答案

我想我已经有了部分答案。通过阅读更多有关 TextTemplatesTransformations 的内容,我修改了 Model1.tt 以包括:

System.ComponentModel.DataAnnotations;

我还修改了 WriteProperty 方法以接受 EdmPropertyType。该代码现在为来自指定长度 > 60 或最大定义字符串的所有字符串生成多行注释。它还生成一个 maxlength 注释,有望有助于防止溢出。如果使用,您将需要修改现有的 WriteProperty 重载,如下所示。

void WriteProperty(CodeGenerationTools code, EdmProperty edmProperty)
{
WriteProperty(Accessibility.ForProperty(edmProperty),
code.Escape(edmProperty.TypeUsage),
code.Escape(edmProperty),
code.SpaceAfter(Accessibility.ForGetter(edmProperty)),
code.SpaceAfter(Accessibility.ForSetter(edmProperty)),edmProperty);
}



void WriteProperty(string accessibility, string type, string name, string getterAccessibility, string setterAccessibility,EdmProperty edmProperty = null)
{
if (type =="string")
{
int maxLength = 0;//66
bool bres = (edmProperty != null
&& Int32.TryParse(edmProperty.TypeUsage.Facets["MaxLength"].Value.ToString(), out maxLength));
if (maxLength > 60) // want to display as a TextArea in html
{
#>
[DataType(DataType.MultilineText)]
[MaxLength(<#=maxLength#>)]
<#+
}
else
if (maxLength < 61 && maxLength > 0)
{
#>
[MaxLength(<#=maxLength#>)]
<#+
}
else
if(maxLength <=0) //varchar(max)
{
#>
[DataType(DataType.MultilineText)]
<#+
}

}
#>
<#=accessibility#> <#=type#> <#=name#> { <#=getterAccessibility#>get; <#=setterAccessibility#>set; }
<#+
}

确保 <#+ 行和 #> 行从行首开始,因为我认为这是 TT 语法的要求。

蒂姆

关于asp.net-mvc - mvc4 和 EF 中的 Html.EditorFor 和多行文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10362333/

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