我正在尝试将自定义表单字段绑定到现有的 ViewModel。我有一个看起来与此类似的 ViewModel
public class BasicProfileViewModel {
public Employee Employee { get; set; }
}
我正在使用上面的方法加载我的表单,但我还有一个CustomFormFieldComponent
添加自定义表单字段
这是基于 Employee 模型中的一些值
@await Component.InvokeAsync("CustomFormFields", new { Model.Level, Model.Employee.CompanyId, Model.Employee.EmployeeId })
该组件非常简单,只需返回我从数据库中检索的列表
@model List<CustomFormField>
@for (int i = 0; i < Model.Count(); i++)
{
<div class="row">
<div class="form-group form-material col-md-6">
@Html.LabelForModel(Model[i].FieldLabel, new { @class = "form-control-label" })
@if (Model[i].IsMandatory)
{
<span>*</span>
}
@if (Model[i].DropdownValues.Any())
{
var values = new SelectList(Model[i].DropdownValues);
<select asp-items="@values" class="form-control"></select>
}
else
{
@Html.TextBoxFor(m => Model[i].FieldValue, new { @class = "form-control" })
}
</div>
</div>
}
我怎样才能让那些自定义表单字段成为我的 ViewModel 的一部分?
我正在考虑做一个自定义模型绑定器,Employee 是一个复杂的对象,因此使用反射设置值并不那么简单。而且我什至还没有开始使用自定义表单字段。
public class RequestBasicProfile
{
public Employee Employee { get; set; } = new Employee();
public List<CustomFormField> FormFields { get; set; }
}
public class RequestBasicProfileBinder : IModelBinder
{
public Task BindModelAsync(ModelBindingContext bindingContext)
{
if (bindingContext == null)
{
throw new ArgumentNullException(nameof(bindingContext));
}
var result = new RequestBasicProfile();
foreach (var item in bindingContext.HttpContext.Request.Form)
{
var propertyInfo = result.Employee.GetType().GetProperty(item.Key.Replace("Employee.", ""));
if (propertyInfo != null)
{
var value = item.Value[0];
propertyInfo.SetValue(result.Employee, Convert.ChangeType(value, propertyInfo.PropertyType), null);
}
}
bindingContext.Result = ModelBindingResult.Success(result);
return Task.CompletedTask;
}
}