C#ASP.NET Core Modelbinder未更新模型



我已经创建了一个模型博客,只有在对象具有分配的 [Decimal]属性时才会触发,但由于某种原因,尽管它实际上对数据进行了消毒,但它似乎没有更新已发布的模型。

我想知道是否有人可以从下面的代码中看到,我可能会出错。

startup.cs

public void ConfigureServices(IServiceCollection serviceCollection)
{
    serviceCollection.AddMvc(config => config.ModelBinderProviders.Insert(0, new DecimalModelBinderProvider()));        
}

decimalmodelbinderprovider.cs

public class DecimalModelBinderProvider : IModelBinderProvider
{
    public IModelBinder GetBinder(ModelBinderProviderContext modelBinderProviderContext)
    {
        if (modelBinderProviderContext == null)
        {
            throw new ArgumentNullException(nameof(modelBinderProviderContext));
        }
        if (!modelBinderProviderContext.Metadata.IsComplexType)
        {
            try
            {
                var propertyName = modelBinderProviderContext.Metadata.PropertyName;
                var property = modelBinderProviderContext.Metadata.ContainerType.GetProperty(propertyName);
                if (property != null)
                {
                    var attribute = property.GetCustomAttributes(typeof(DecimalAttribute), false).FirstOrDefault();
                    if (attribute != null)
                    {
                        return new DecimalModelBinder(modelBinderProviderContext.Metadata.ModelType, attribute as IDecimalAttribute);
                    }
                }
            }
            catch (Exception exception)
            {
                var message = exception.Message;
                return null;
            }
        }
        return null;
    }
}

decimalmodelbinder.cs

public class DecimalModelBinder : IModelBinder
{
    private readonly IDecimalAttribute _decimalAttribute;
    private readonly SimpleTypeModelBinder _simpleTypeModelBinder;
    public DecimalModelBinder(Type type, IDecimalAttribute decimalAttribute)
    {
        if (type == null)
        {
            throw new ArgumentNullException(nameof(type));
        }
        _decimalAttribute = decimalAttribute;
        _simpleTypeModelBinder = new SimpleTypeModelBinder(type);
    }
    public Task BindModelAsync(ModelBindingContext modelBindingContext)
    {
        if (modelBindingContext == null)
        {
            throw new ArgumentNullException(nameof(modelBindingContext));
        }
        var valueProviderResult = modelBindingContext.ValueProvider.GetValue(modelBindingContext.ModelName);
        if (valueProviderResult != ValueProviderResult.None)
        {
            modelBindingContext.ModelState.SetModelValue(modelBindingContext.ModelName, valueProviderResult);
            var value = valueProviderResult.FirstValue;
            bool success;
            var result = _decimalAttribute.Decimal(value, out success);
            if (success)
            {
                modelBindingContext.Result = ModelBindingResult.Success(result);
                return Task.CompletedTask;
            }
        }
        return _simpleTypeModelBinder.BindModelAsync(modelBindingContext);
    }
}

idecimalattribute.cs

public interface IDecimalAttribute
{
    object Decimal(string value, out bool success);
}

decimalattribute.cs

[AttributeUsage(AttributeTargets.Property)]
public class DecimalAttribute : Attribute, IDecimalAttribute
{
    public object Decimal(string value, out bool success)
    {
        var tryModelValue = string.IsNullOrEmpty(value) ? "0.00" : value.Replace("£", "").Replace("%", "");
        decimal @decimal;
        success = decimal.TryParse(tryModelValue, out @decimal);
        return @decimal;
    }
}

test.cs

public class Test
{
    [Display(Name = "Name", Description = "Name")]
    public string Name { get; set; }
    [Decimal]
    [Display(Name = "Amount", Description = "Amount")]
    public double Amount { get; set; }
}

homecontroller

[ValidateAntiForgeryToken]
[HttpPost]
public IActionResult Index(Test test)
{
    if (ModelState.IsValid)
    {
    }
    return View(test);
}

为了进行测试,我将向该金额字段输入价值252.83英镑并提交表格。

如果然后在行var value = valueProviderResult.FirstValue;上放置一个brakepoint,我可以看到该值为252.83英镑,如果我在行上放置一个断点modelBindingContext.Result = ModelBindingResult.Success(result);,我可以看到结果是252.83M

但是,如果我进一步浏览代码并在线路if (ModelState.IsValid)上放置一个断点,则有效状态为false,如果我检查模型test,则对象Amount为0。

如果有人可以提供帮助,将不胜感激: - )

尝试进一步检查模型状态错误,金额属性应无效,并且必须有一个例外。

我猜这应该是无效的castection。我注意到测试类中的数量属性是您在十进制中产生十进制的时的两倍。

因此,处理测试类(应该是复杂的typemodelbinder)无法设置金额属性,因为它是不同的类型。

相关内容

  • 没有找到相关文章

最新更新