gpt4 book ai didi

c# - 覆盖 MVC 中的最大长度错误消息

转载 作者:行者123 更新时间:2023-11-30 14:51:50 25 4
gpt4 key购买 nike

我正在尝试覆盖 ASP.net MVC 中的最大长度错误消息。基本上,我想使错误消息字符串如下:

[DisplayName] 长度不应超过 [x]。但是,我不知道如何在里面包含 displayname 属性值。

public class MyMaxLengthAttribute : MaxLengthAttribute
{
public MyMaxLengthAttribute(int length) : base(length)
{
ErrorMessage = "What should I input here"
}
}

最佳答案

如果您使用 StringLengthAttribute{0} 指的是显示名称,{2} 指的是长度。

public class MyMaxLengthAttribute : StringLengthAttribute
{
public MyMaxLengthAttribute(int length) : base(length)
{
ErrorMessage = "{0} length should not be more than {2}"
}
}

关于c# - 覆盖 MVC 中的最大长度错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33393584/

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