gpt4 book ai didi

asp.net-mvc - 双值绑定(bind)问题

转载 作者:行者123 更新时间:2023-12-04 10:01:52 26 4
gpt4 key购买 nike

在我的项目中,我希望允许用户以 2 种格式输入 double 值:使用“,”或“。”作为分隔符(我对指数形式不感兴趣)。默认值带有分隔符 '.'不工作。
我希望这种行为适用于复杂模型对象中的所有双重属性(目前我使用包含标识符和值的对象集合)。

我应该使用什么:值(value)提供者或模型绑定(bind)器?请显示解决我的问题的代码示例。

最佳答案

您可以使用自定义模型绑定(bind)器:

public class DoubleModelBinder : DefaultModelBinder
{
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var result = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
if (result != null && !string.IsNullOrEmpty(result.AttemptedValue))
{
if (bindingContext.ModelType == typeof(double))
{
double temp;
var attempted = result.AttemptedValue.Replace(",", ".");
if (double.TryParse(
attempted,
NumberStyles.Number,
CultureInfo.InvariantCulture,
out temp)
)
{
return temp;
}
}
}
return base.BindModel(controllerContext, bindingContext);
}
}

可以在 Application_Start中注册:
ModelBinders.Binders.Add(typeof(double), new DoubleModelBinder());

关于asp.net-mvc - 双值绑定(bind)问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6520005/

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