私はあなたができるはずだと思います。
public class FooModelBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
FooModel fooModel = bindingContext.Model as fooModel;
if (fooModel != null)
{
// Do your verification stuff in here
// Updating any properties of your Model.
// Or you could retrieve something else entirely and return it if you like
// Let's pretend we just want to verify the model and set some property or other.
fooModel.NonceOkay = DoVerification(fooModel);
fooModel.NextAction = WorkOutWhereToGoNext(fooModel);
// or whatever
}
return fooModel;
}
}
DoVerification
あなたModelBinderに住むことができるが、それはどこか別の場所に住んでいることは良いかもしれない:これを試してみてください。
次に、あなたのGlobal.asaxの中のApplication_Startでこれをスティック:
ModelBinders.Binders.Add(typeof(Foo), new FooModelBinder());
感謝を。私はFooをアクションパラメータとして使用するときはいつでも、モデルバインダーをデフォルトにします。 – BigOmega
はい、そうです。 –
簡単な質問、あなたが私に示したコード内のポイント(if内)で、ヘッダ値や本文、コンテンツタイプなどのHTTPリクエスト値にどのようにアクセスすればよいですか? – BigOmega