ServiceStack:清理字符串值的简单方法或选项?

时间:2014-11-08 13:44:25

标签: c# servicestack dto servicestack-text

我想知道在反序列化时,传入DTO中的字符串值是否有“修剪”和“设置为空”的选项?我有很多字符串属性需要这样做,所以在每个属性手动过滤器中这样做似乎太乏味......

1 个答案:

答案 0 :(得分:4)

您可以在全局请求过滤器中使用反射,例如:

GlobalRequestFilters.Add((req, res, dto) => dto.SanitizeStrings());

SanitizeStrings只是一种自定义扩展方法:

public static class ValidationUtils
{
    public static void SanitizeStrings<T>(this T dto)
    {
        var pis = dto.GetType().GetProperties();    
        foreach (var pi in pis)
        {
            if (pi.PropertyType != typeof(string)) continue;

            var mi = pi.GetGetMethod();
            var strValue = (string)mi.Invoke(dto, new object[0]);
            if (strValue == null) continue;
            var trimValue = strValue.Trim();

            if (strValue.Length > 0 && strValue == trimValue) continue;

            strValue = trimValue.Length == 0 ? null : trimValue;
            pi.GetSetMethod().Invoke(dto, new object[] { strValue });
        }
    }
}