MVC2 SelectedListItem 未绑定到 ViewModel

发布于 2024-10-17 15:36:03 字数 981 浏览 7 评论 0原文

我的选择列表项有问题,其值是从数据库中检索的。

它在视图中显示项目列表,但不会将所选值传递(POST)到模型中。

因此,当用户提交或页面因验证而重新加载时,选择值 (PositionApplied) 为空。

谁能给我一些关于我哪里出错的指示?

在我的控制器中:

    [HttpGet]
    public ActionResult Index()
    {
        PopulateJobsDropdown();
        return View();
    }

    private void PopulateJobsDropdown()
    {
        IEnumerable<SelectListItem> items = _service.GetJobs()
            .Select(c => new SelectListItem
                             {
                                 Value = c.JobID.ToString(),
                                 Text = c.JobTitle
                             });
        ViewData["PositionApplied"] = items;
    }

在我的 ViewModel 中

 public IEnumerable<SelectListItem> PositionApplied { get; set; }

在我的视图中

<%=Html.DropDownList("PositionApplied")%>

提前感谢您的指点!

I am having a problem with a selectlistitem, the values of which are being retrieved from a database.

It is displaying the list of items in the view, but it is not passing through (POSTing) the selected value into the model.

So when the user submits, or the page reloads due to validation, the select value (PositionApplied) is empty.

Can anyone give me some pointers as to where I am going wrong?

In my controller:

    [HttpGet]
    public ActionResult Index()
    {
        PopulateJobsDropdown();
        return View();
    }

    private void PopulateJobsDropdown()
    {
        IEnumerable<SelectListItem> items = _service.GetJobs()
            .Select(c => new SelectListItem
                             {
                                 Value = c.JobID.ToString(),
                                 Text = c.JobTitle
                             });
        ViewData["PositionApplied"] = items;
    }

In my ViewModel

 public IEnumerable<SelectListItem> PositionApplied { get; set; }

In my View

<%=Html.DropDownList("PositionApplied")%>

Thanks in advance for any pointers!

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

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

发布评论

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

评论(1

不忘初心 2024-10-24 15:36:03

的代码行在哪里

ViewData["PositionApplied"] = items;

那么,进入

public IEnumerable<SelectListItem> PositionApplied { get; set; }

类似以下内容

this.PositionApplied = ViewData["PositionApplied"] as IEnumerable<SelectListItem>;

:您可以在视图中简单使用:

<%
    IEnumerable<SelectListItem> PositionApplied = 
          ViewData["PositionApplied"] as IEnumerable<SelectListItem>;
%>

...

<%= Html.DropDownList("myDropDOwnId", PositionApplied) %>

或者在 MVC2 下是否发生了一些我不知道的自动魔法?当我一直使用我给你的例子时。


添加

以避免 Linq to Entities 错误(如果您正在使用它)将您的方法更改为

private void PopulateJobsDropdown()
{
    IQueryble<Your_Table> jobs = _service.GetJobs();
    List<SelectListItem> items = new List<SelectListItem>();
    foreach(var job in jobs)
        items.add(new SelectListItem
                      {
                         Value = c.JobID.ToString(),
                         Text = c.JobTitle
                      });
    ViewData["PositionApplied"] = items;
}

,一切都会正常工作。

So, where is the code line that get's the

ViewData["PositionApplied"] = items;

into

public IEnumerable<SelectListItem> PositionApplied { get; set; }

something like:

this.PositionApplied = ViewData["PositionApplied"] as IEnumerable<SelectListItem>;

and you can simple use in your View:

<%
    IEnumerable<SelectListItem> PositionApplied = 
          ViewData["PositionApplied"] as IEnumerable<SelectListItem>;
%>

...

<%= Html.DropDownList("myDropDOwnId", PositionApplied) %>

or is there some of automagical happening under MVC2 that I'm not aware about? As I use the example I give you, all the time.


Added

in order to avoid Linq to Entities error (if you are using it) change your method to

private void PopulateJobsDropdown()
{
    IQueryble<Your_Table> jobs = _service.GetJobs();
    List<SelectListItem> items = new List<SelectListItem>();
    foreach(var job in jobs)
        items.add(new SelectListItem
                      {
                         Value = c.JobID.ToString(),
                         Text = c.JobTitle
                      });
    ViewData["PositionApplied"] = items;
}

and all will work fine.

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