web-dev-qa-db-ja.com

Asp.net MVCのカスタムDateTimeモデルバインダー

DateTimeタイプ用の独自のモデルバインダーを記述したいと思います。最初に、次のようにモデルプロパティにアタッチできる新しい属性を記述します。

_[DateTimeFormat("d.M.yyyy")]
public DateTime Birth { get; set,}
_

これは簡単な部分です。しかし、バインダー部分はもう少し難しいです。タイプDateTimeの新しいモデルバインダーを追加したいと思います。どちらでもいい

  • IModelBinderインターフェースを実装し、独自のBindModel()メソッドを作成する
  • DefaultModelBinderを継承し、BindModel()メソッドをオーバーライドする

私のモデルには上記のようなプロパティがあります(Birth)。したがって、モデルがリクエストデータをこのプロパティにバインドしようとすると、モデルバインダーのBindModel(controllerContext, bindingContext)が呼び出されます。すべて大丈夫ですが。 日付を正しく解析するために、controller/bindingContextからプロパティ属性を取得するにはどうすればよいですか?プロパティPropertyDesciptorBirthにアクセスするにはどうすればよいですか?

編集する

懸念事項の分離のため、モデルクラスはSystem.Web.MVCアセンブリを参照しない(および参照しない)アセンブリで定義されています。カスタムバインディング( Scott Hanselmanの例 と同様)属性を設定することは、ここでは不要です。

23
Robert Koritnik

モデルにロケール固有の属性を配置する必要はないと思います。

この問題の他の2つの可能な解決策は次のとおりです。

  • 日付をロケール固有の形式からJavaScriptのyyyy-mm-ddなどの一般的な形式に変換します。 (機能しますが、JavaScriptが必要です。)
  • 日付を解析するときに現在のUIカルチャを考慮するモデルバインダーを記述します。

実際の質問に答えるには、カスタム属性(MVC 2の場合)を取得する方法は AssociatedMetadataProviderを書き込む です。

3
Craig Stuntz

iModelBinderを使用して、ユーザーカルチャを使用するようにデフォルトのモデルバインダーを変更できます

public class DateTimeBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
        bindingContext.ModelState.SetModelValue(bindingContext.ModelName, value);

        return value.ConvertTo(typeof(DateTime), CultureInfo.CurrentCulture);
    }
}

public class NullableDateTimeBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
        bindingContext.ModelState.SetModelValue(bindingContext.ModelName, value);

        return value == null
            ? null 
            : value.ConvertTo(typeof(DateTime), CultureInfo.CurrentCulture);
    }
}

そして、Global.Asaxで、Application_Start()に以下を追加します。

ModelBinders.Binders.Add(typeof(DateTime), new DateTimeBinder());
ModelBinders.Binders.Add(typeof(DateTime?), new NullableDateTimeBinder());

Mvcフレームワークチームがすべてのユーザーにデフォルトのカルチャーを実装した理由を説明する この優れたブログ で詳細をご覧ください。

私はこの非常に大きな問題を自分で抱えていましたが、何時間も試行錯誤を繰り返した結果、あなたが尋ねたような解決策が得られました。

まず、プロパティにのみバインダーを配置することはできないため、完全なModelBinderを実装する必要があります。すべての単一のプロパティをバインドするのではなく、気になるプロパティのみをDefaultModelBinderから継承して、単一のプロパティをバインドする必要があるため、次のようにします。

public class DateFiexedCultureModelBinder : DefaultModelBinder
{
    protected override void BindProperty(ControllerContext controllerContext, ModelBindingContext bindingContext, System.ComponentModel.PropertyDescriptor propertyDescriptor)
    {
        if (propertyDescriptor.PropertyType == typeof(DateTime?))
        {
            try
            {
                var model = bindingContext.Model;
                PropertyInfo property = model.GetType().GetProperty(propertyDescriptor.Name);

                var value = bindingContext.ValueProvider.GetValue(propertyDescriptor.Name);

                if (value != null)
                {
                    System.Globalization.CultureInfo cultureinfo = new System.Globalization.CultureInfo("it-CH");
                    var date = DateTime.Parse(value.AttemptedValue, cultureinfo);
                    property.SetValue(model, date, null);
                }
            }
            catch
            {
                //If something wrong, validation should take care
            }
        }
        else
        {
            base.BindProperty(controllerContext, bindingContext, propertyDescriptor);
        }
    }
}

私の例では、カルチャーを厳しくして日付を解析していますが、あなたがやりたいことは可能です。 CustomAttribute(DateTimeFormatAttributeなど)を作成し、プロパティの上に配置する必要があります。

[DateTimeFormat("d.M.yyyy")]
public DateTime Birth { get; set,}

BindPropertyメソッドで、DateTimeプロパティを探す代わりに、DateTimeFormatAttributeを使ってプロパティを探し、コンストラクタで指定した形式を取得して、DateTime.ParseExactで日付を解析できます。

これがお役に立てば幸いです。この解決策を見つけるまでに非常に長い時間がかかりました。私はそれを検索する方法を知っていれば、この解決策を手に入れるのは実際には簡単でした:(

14
Davide Vosti

このようにカスタムのDateTime Binderを実装することもできますが、実際のクライアント要求から想定されるカルチャと値に注意する必要があります。 en-USでmm/dd/yyyyのような日付を取得し、それをシステムカルチャーen-GB(dd/mm/yyyyのようになります)または不変カルチャーで変換したい場合は、次のようにします。前にそれを解析し、静的ファサードConvertを使用して、その動作を変更する必要があります。

    public class DateTimeModelBinder : IModelBinder
    {
        public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {
            var valueResult = bindingContext.ValueProvider
                              .GetValue(bindingContext.ModelName);
            var modelState = new ModelState {Value = valueResult};

            var resDateTime = new DateTime();

            if (valueResult == null) return null;

            if ((bindingContext.ModelType == typeof(DateTime)|| 
                bindingContext.ModelType == typeof(DateTime?)))
            {
                if (bindingContext.ModelName != "Version")
                {
                    try
                    {
                        resDateTime =
                            Convert.ToDateTime(
                                DateTime.Parse(valueResult.AttemptedValue, valueResult.Culture,
                                    DateTimeStyles.AdjustToUniversal).ToUniversalTime(), CultureInfo.InvariantCulture);
                    }
                    catch (Exception e)
                    {
                        modelState.Errors.Add(EnterpriseLibraryHelper.HandleDataLayerException(e));
                    }
                }
                else
                {
                    resDateTime =
                        Convert.ToDateTime(
                            DateTime.Parse(valueResult.AttemptedValue, valueResult.Culture), CultureInfo.InvariantCulture);
                }
            }
            bindingContext.ModelState.Add(bindingContext.ModelName, modelState);
            return resDateTime;
        }
    }

とにかく、ステートレスアプリケーションでのカルチャ依存のDateTime解析は、残酷なものになる可能性があります。特に、JavaScriptのクライアントサイドで逆方向にJSONを使用する場合。

0
Phil