gpt4 book ai didi

json - 如何序列化具有来自各个属性的所有验证属性的模型?

转载 作者:行者123 更新时间:2023-12-04 14:18:23 24 4
gpt4 key购买 nike

上下文:使用 mvc Controller 方法创建一个 jsonP 服务,该方法提供包含所有验证规则的表单字段定义。

我的问题是我不知道如何序列化验证属性。在常规 Mvc View 中使用不显眼的验证时,我更喜欢采用与 Razor 序列化相同格式的验证属性。

为了序列化为 json,我使用 NewtonSoft.Json (4.0.2)。

模型示例:
公共(public)类简介{

    [Required(ErrorMessage="This field is required.")]
[StringLength(25, ErrorMessage="Max 25 chars.")]
public string Firstname{get;set;}
}

首选序列化 javascript 示例:
     {"Firstname": "John", 
"ValidationRules":[{"data-val-required":"This field is required.", "data-val-length-max":25, "data-val-length":"Max 25 chars." }]}

非常感谢任何帮助或指示。

最佳答案

这将构造一个字典,其中包含基于数据注释属性的给定属性的验证属性:

var metadata = ModelMetadataProviders.Current.GetMetadataForProperty(null, typeof(MyModel), "MyProperty");
var validationRules = metadata.GetValidators(ControllerContext).SelectMany(v => v.GetClientValidationRules());
var validationAttributes = new Dictionary<string, string>();

foreach (ModelClientValidationRule rule in validationRules)
{
string key = "data-val-" + rule.ValidationType;
validationAttributes.Add(key, HttpUtility.HtmlEncode(rule.ErrorMessage ?? string.Empty));
key = key + "-";
foreach (KeyValuePair<string, object> pair in rule.ValidationParameters)
{
validationAttributes.Add(key + pair.Key,
HttpUtility.HtmlAttributeEncode(
pair.Value != null ? Convert.ToString(pair.Value, CultureInfo.InvariantCulture) : string.Empty));
}
}

然后,您应该在自定义 JSON 序列化代码中使用您的属性序列化 validationAttributes 字典。

关于json - 如何序列化具有来自各个属性的所有验证属性的模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6412397/

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