将下拉列表值发送回变量MVC 4

时间:2016-01-15 15:43:24

标签: c# mysql asp.net-mvc asp.net-mvc-4

您好我有一张工作表,其中包含特定ID

id   title
1    Manager
2    Engineer
3    IT 

我创建了一种方法,以便能够使用此表和数据从数据库加载这些值。

这是我的模特

[Display(Name = "Type: "),
Required(ErrorMessage = "Required")]
public IEnumerable<SelectListItem> jobTitle { get; set; }

这是我的控制器

public void loadDropDown()
        {
            JobModel selectedJob = new JobModel();
            reviewlogsEntities db = new reviewlogsEntities();

            IEnumerable<SelectListItem> type = db.types.Select(m => new SelectListItem
            {
                Value = SqlFunctions.StringConvert((double)m.id),

                Text = m.title



            });


            ViewBag.JobTitle = type;
        }

        [HttpGet]
        public ActionResult DisplayJobTitle()
        {
            if (Request.IsAuthenticated)
            {

                loadDropDown();

                return View();


            }       

            else
            {
                return RedirectToAction("index", "home");
            }
        }

        [HttpPost]
        public ActionResult DisplayJobTitle(JobModel curJob)
        {


            loadDropDown();

             if (ModelState.IsValid)
             {

                 return View();
             }

             else
             {

                 ModelState.AddModelError("", "Looks like there was an error                     with your job title, please make sure a job title is selected.");

             }

              return View();
        }

最后我的观点是:

@Html.ValidationSummary(true, "Please try again.")
@using (Html.BeginForm())
{
    @Html.LabelFor(model => model.type)
    @Html.DropDownList("JobTitle")

    <input class="submitButton" type="submit" value="Show Job Info" style="margin-left:126px;margin-bottom: 20px;" />
}

看到问题是我的模型中的变量jobTitle为null因为我从不给它一个值,因为我没有给它一个值,表单认为它没有填写,因为它必须是必需的并且不会正确提交。我的问题是,当提交表单时,如何将用户选择的任何作为其作业标题的值返回到jobTitle变量,以便我不会收到提交失败。

3 个答案:

答案 0 :(得分:0)

模型应该接受选定的值而不是项目集合:

[Display(Name = "Type: "),
Required(ErrorMessage = "Required")]
public int jobTitle { get; set; }

答案 1 :(得分:0)

您需要一个属性来映射模型中的选定值,如:

[Display(Name = "Type: "),
Required(ErrorMessage = "Required")]
public int SelectedjobTitle { get; set; }

然后在你的视图中:

@Html.DropDownList("SelectedJobTitle",ViewBag.JobTile as IEnumerable<SelectListItem>)

答案 2 :(得分:0)

像这样使用DropDownListFor:

@Html.DropDownListFor(model => model.JobTitle, Model.Jobs)

在您的模型上:

[Display(Name = "Type: "),
Required(ErrorMessage = "Required")]
public int JobTitle { get; set; }
public IEnumerable<SelectListItem> Jobs { get; set; } 
不要忘记填写&#34;乔布斯&#34;在你的控制器上。