RenderAction 生成下拉菜单?

发布于 2024-11-03 01:56:02 字数 264 浏览 2 评论 0原文

我有一个 mvc 表单,其中包含一个 int ,该 int 应该映射到下拉列表中显示的文本字符串。

MyViewModel
{
    ...other fields...
    int Level { get; set; }
    ...other fields...
}

是否可以对 Level 字段使用 RenderAction 并从单独的操作生成下拉列表?

我希望这个问题是连贯的,我要戒咖啡了,我的头不在平常的地方。

I'm having a mvc form which among other things contains an int that should be mapped to text strings displayed in a dropdown.

MyViewModel
{
    ...other fields...
    int Level { get; set; }
    ...other fields...
}

Is it possible to use RenderAction for the Level field and generate the dropdown from a separate action?

I hope this question is coherent, I'm quitting coffee and my head isn't where it usually is.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

埋葬我深情 2024-11-10 01:56:02

虽然很多人会建议(正确地)不要这样做,但如果你坚持你可以做类似的事情

public VMDropDown
{
     IEnumerable<SelectListItem> Items{get;set;}
     public string InputName{get;set;}
}

,因为你想重用这个下拉列表,你可以接受它的 html name 属性作为

public ActionResult(string inputName)
{
    VMDropDown model = new VMDropDown();
    model.InpuName = inputName;
    model.Items = //populate Text and Value property of each SelectListItem from db
    return View(model);

}

视图中的操作方法参数,你可以写类似的东西

<:Html.Dropdown(Model.InputName, Model.Items)%>

Although many people will advise (rightly so) not to do this but if you insist you can do something like

public VMDropDown
{
     IEnumerable<SelectListItem> Items{get;set;}
     public string InputName{get;set;}
}

as you want to reuse this dropdown you can accept its html name attribute as action method parameter

public ActionResult(string inputName)
{
    VMDropDown model = new VMDropDown();
    model.InpuName = inputName;
    model.Items = //populate Text and Value property of each SelectListItem from db
    return View(model);

}

in your view you can write something like

<:Html.Dropdown(Model.InputName, Model.Items)%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文