asp.net-mvc – 在使用ModelBinder之前更改文化

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 在使用ModelBinder之前更改文化前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想用不同的语言创建一个网站.我已经读过我可以创建一个 @L_301_0@,但我有一个小问题:
我必须创建一个自定义的ModelBinder才能使用英语和德语数字格式(123,456,789.1与123.456.789,1)
public class DecimalModelBinder : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext,ModelBindingContext bindingContext)
    {
        string key = bindingContext.ModelName;
        var v = ((string[])bindingContext.ValueProvider.GetValue(key).RawValue)[0];
        float outPut;
        if (float.TryParse(v,NumberStyles.Number,System.Globalization.CultureInfo.CurrentCulture,out outPut))
            return outPut;
        return base.BindModel(controllerContext,bindingContext);

    }
}

此ModelBinder使用当前文化来决定使用哪种格式.
但不幸的是,在ActionFilter改变文化之前就使用了ModelBinder.

如何在ModelBinder变为活动状态之前更改文化?

解决方法

您可以实现IHttpModule并在BeginRequest中设置文化,如 here所示.
void context_BeginRequest(object sender,EventArgs e)
{
    // eat the cookie (if any) and set the culture
    if (HttpContext.Current.Request.Cookies["lang"] != null)
    {
        HttpCookie cookie = HttpContext.Current.Request.Cookies["lang"];
        string lang = cookie.Value;
        var culture = new System.Globalization.CultureInfo(lang);
        Thread.CurrentThread.CurrentCulture = culture;
        Thread.CurrentThread.CurrentUICulture = culture;
    }
}
原文链接:https://www.f2er.com/aspnet/251816.html

猜你在找的asp.Net相关文章