私はこのコントローラーを持っています:
[HttpPost]
public JsonResult Execute(PaymentModel paymentModel){...}
これがモデルです
public class PaymentModel
{
[Required]
[DisplayName("Full name")]
public string FullName { get; set; }
...
}
これがバインディングアクションです
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
ModelBinders.Binders.Add(typeof(PaymentModel), new PaymentModelsBinding());
}
これはバインディングの実装です
public class PaymentModelsBinding : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
//Cant get to here with the debugger
}
それが関連しているかどうかはわかりませんが、Ninject を使用してコントローラー コンストラクターに注入しています。
更新 これは、フォームの送信方法です。
$.ajax({
type: 'POST',
url: $("#form").attr("action"),
data: $("#form").serialize(),
success: function (json) {
...
},
dataType: "Json"
});
つまり、可能な限りすべての WEB 方法で呼び出します。
Browser Ajax、Browser Classic フォーム送信、WebClient など。
更新 これは私のninjectコードです:
kernel.Components.Add<IInjectionHeuristic, CustomInjectionHeuristic>();
kernel.Bind<IPaymentMethodFactory>().ToProvider<PaymentMethodFactoryProvider>().InSingletonScope();
kernel.Bind<IDefaultBll>().To<DefaultBll>().InSingletonScope();
kernel
.Bind<IDalSession>()
.ToProvider<HttpDalSessionProvider>()
.InRequestScope();
ありがとう