gpt4 book ai didi

具有多选功能的 asp.net mvc 强类型 View 模型

转载 作者:行者123 更新时间:2023-12-02 14:58:49 26 4
gpt4 key购买 nike

我想知道如何将我的表单值从多选框绑定(bind)到我的强类型 View 。

显然,当表单提交时,多选框将提交我选择的值的分隔字符串...将此字符串值转换回对象列表以附加到要更新的模型的最佳方法是什么?

public class MyViewModel {
public List<Genre> GenreList {get; set;}
public List<string> Genres { get; set; }
}

当更新 Controller 内的模型时,我使用如下所示的 UpdateModel:

Account accountToUpdate = userSession.GetCurrentUser();
UpdateModel(accountToUpdate);

但是我需要以某种方式将字符串中的值返回到对象中。

我相信这可能与模型绑定(bind)程序有关,但我找不到任何清晰的示例来说明如何做到这一点。

谢谢!!保罗

最佳答案

你说得对,模型绑定(bind)器是正确的选择。试试这个...

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;

[ModelBinder(typeof(MyViewModelBinder))]
public class MyViewModel {
....
}

public class MyViewModelBinder : DefaultModelBinder {
protected override void SetProperty(ControllerContext context, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor, object value) {
if (propertyDescriptor.Name == "Genres") {
var arrVals = ((string[])value)[0].Split(',');
base.SetProperty(context, bindingContext, propertyDescriptor, new List<string>(arrVals));
}
else
base.SetProperty(context, bindingContext, propertyDescriptor, value);
}
}

关于具有多选功能的 asp.net mvc 强类型 View 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2009394/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com