双值绑定问题
Posted
技术标签:
【中文标题】双值绑定问题【英文标题】:Problem with double values binding 【发布时间】:2011-06-29 11:36:47 【问题描述】:在我的项目中,我希望允许用户以 2 种格式输入双精度值:使用 ',' 或 '.'作为分隔符(我对指数形式不感兴趣)。默认值带有分隔符 '.'不工作。 我希望这种行为适用于复杂模型对象中的所有双重属性(目前我使用包含标识符和值的对象集合)。
我应该使用什么:价值提供者或模型绑定器?请显示解决我的问题的代码示例。
【问题讨论】:
***.com/questions/5050641/… 有帮助吗? 【参考方案1】:您可以使用自定义模型绑定器:
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());
【讨论】:
感谢您的明确回答,但是价值提供者的目的是什么?它是对不同来源的抽象吗(如表单值集合、url 参数、服务器变量、cookie 等)? 另外,不要忘记为 Nullable 类型添加相同的活页夹以上是关于双值绑定问题的主要内容,如果未能解决你的问题,请参考以下文章
具有双值的 Java MethodOverloading 错误