3 回答
TA贡献1779条经验 获得超6个赞
您可以创建自定义模型绑定器,其任务是删除默认生成的验证错误CollectionModelBinder。这在您的情况下应该足够了,因为默认模型活页夹按您需要的方式工作,不会向集合中添加无效值。
public class EmptyCollectionModelBinder : CollectionModelBinder<FilterType>
{
public EmptyCollectionModelBinder(IModelBinder elementBinder) : base(elementBinder)
{
}
public override async Task BindModelAsync(ModelBindingContext bindingContext)
{
await base.BindModelAsync(bindingContext);
//removing validation only for this collection
bindingContext.ModelState.ClearValidationState(bindingContext.ModelName);
}
}
创建并注册模型活页夹提供程序
public class EmptyCollectionModelBinderProvider : IModelBinderProvider
{
public IModelBinder GetBinder(ModelBinderProviderContext context)
{
if (context == null)
{
throw new ArgumentNullException(nameof(context));
}
if (context.Metadata.ModelType == typeof(IEnumerable<FilterType>))
{
var elementBinder = context.CreateBinder(context.MetadataProvider.GetMetadataForType(typeof(FilterType)));
return new EmptyCollectionModelBinder(elementBinder);
}
return null;
}
}
启动.cs
services
.AddMvc(options =>
{
options.ModelBinderProviders.Insert(0, new EmptyCollectionModelBinderProvider());
})
TA贡献1871条经验 获得超8个赞
你有几个选择。您可以创建一个自定义模型活页夹来处理您的过滤器类型或者:
您可以使用 Nullables 创建 IEnumerable:
public IEnumerable<FilterType?> Filter { get; set; }
并过滤掉调用代码中的空值:
return string.Join(Environment.NewLine, dataFilter?.Filter?.Where(f => f != null) .Select(f => f.ToString()) ?? Enumerable.Empty<string>());
TA贡献1712条经验 获得超3个赞
我已经使用自定义 TypeConverter 解决了这个问题,并转移到 JSON 格式来传递数组(例如 filter=["one","two"])
这是我定义它的方式:
public class JsonArrayTypeConverter<T> : TypeConverter
{
private static readonly TypeConverter _Converter = TypeDescriptor.GetConverter(typeof(T));
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) =>
sourceType == typeof(string) || TypeDescriptor.GetConverter(sourceType).CanConvertFrom(context, sourceType);
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
try
{
return JsonConvert.DeserializeObject<IEnumerable<T>>((string)value);
}
catch (Exception)
{
var dst = _Converter.ConvertFrom(context, culture, value); //in case this is not an array or something is broken, pass this element to a another converter and still return it as a list
return new T[] { (T)dst };
}
}
}
和全球注册:
TypeDescriptor.AddAttributes(typeof(IEnumerable<FilterType>), new TypeConverterAttribute(typeof(JsonArrayTypeConverter<FilterType>)));
现在我的过滤器列表中没有空项目,并且还支持具有多种类型支持(枚举、字符串、整数等)的 JSON 列表。
唯一的缺点是这不能像以前那样处理传递的元素(例如 filter=one&filter=two&filter=three)。浏览器地址栏中的查询字符串也不好看。
- 3 回答
- 0 关注
- 105 浏览
添加回答
举报