このようなことはできますか?
[HttpPost]
public ActionResult Index(WizardViewModel wizard, IStepViewModel step)
{
global.asax.cs application_start の次の場所
ModelBinders.Binders.Add(typeof(IStepViewModel), new StepViewModelBinder());
ModelBinders.Binders.Add(typeof(WizardViewModel), new WizardViewModelBinder());
アップデート
というわけで、何がおかしいのか調べてみました。これが私の新しいコードです。問題はこの WizardViewModel とバインダーにあるようです。アプリケーションに期待することと、受信するウィザード モデルを「伝える」ものは何ですか?
[HttpPost]
public ActionResult Index(WizardViewModel wizard)
{
global.asax.cs application_start の次の場所
ModelBinders.Binders.Add(typeof(WizardViewModel), new WizardViewModelBinder());
完全なバインダー コード
namespace Tangible.Binders
{
public class StepViewModelBinder : DefaultModelBinder
{
protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType)
{
var stepTypeValue = bindingContext.ValueProvider.GetValue("StepType");
var stepType = Type.GetType((string)stepTypeValue.ConvertTo(typeof(string)), true);
var step = Activator.CreateInstance(stepType);
bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => step, stepType);
return step;
}
}
public class WizardViewModelBinder : DefaultModelBinder
{
protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType)
{
var wizardValue = bindingContext.ValueProvider.GetValue("wizard");
if (wizardValue != null)
{
var wizardType = Type.GetType((string)wizardValue.ConvertTo(typeof(string)), true);
var wizard = Activator.CreateInstance(wizardType);
bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => wizard, wizardType);
return wizard;
}
else
{
var wizard = new Tangible.Models.WizardViewModel();
wizard.Initialize();
return wizard;
}
}
}
}