这是我正在尝试做的事情:
我正在尝试从 MultiSelectList 收集多个字符串值,并在 HttpPost 上创建一个新的、单独的数据库行,该行对应于关联模型的 MultiSelectList 中的每个值。
在本例中,我尝试为服务位置创建数据库条目(例如,在洛杉矶、圣地亚哥和旧金山提供服务的管道工)。所以他会进入我的应用程序并选择州:加利福尼亚,然后选择城市:洛杉矶、圣地亚哥、旧金山……这将创建三个新记录,每个记录都有一个新的 SPServiceLocationID:
SPServiceLocationID:1 SPCompanyAccountID:4 州:3 城市:洛杉矶
这是我的模型:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.ComponentModel.DataAnnotations;
namespace BidFetcher.Models
{
public class SPServiceLocation
{
public int SPServiceLocationID { get; set; }
public int SPCompanyAccountID { get; set; }
[Display(Name = "State")]
public string state { get; set; }
[Required]
[Display(Name = "Cities (select all that apply)")]
public string city { get; set; }
public virtual SPCompanyAccount SPCompanyAccount { get; set; }
}
}
这是用于生成视图的控制器,在其中填充 MultiSelectList 没有问题:
public ActionResult Create()
{
ViewBag.sessionName = HttpContext.Session["SPCompanyName"].ToString();
var compID = HttpContext.Session["SPCompanyAccountID"].ToString();
ViewBag.companyID = compID;
ViewBag.state = new SelectList(simpleDB.simpleState, "simpleStateID", "simpleStateID");
ViewBag.city = new MultiSelectList(simpleDB.simpleCity, "cityFull", "cityFull");
return View();
}
这是生成 MultiSelectList 的查看代码:
@Html.ListBox("city", ViewBag.city as MultiSelectList, new { @class = "chzn-select", data_placeholder = "Select cities..." })
最后,这是我用于发布到数据库的 Controller 数据,这是我认为我需要帮助的部分:
[HttpPost]
public ActionResult Create(SPServiceLocation spservicelocation, FormCollection formValues)
{
if (ModelState.IsValid)
{
db.SPServiceLocation.Add(spservicelocation);
db.SaveChanges();
return RedirectToAction("Create", "SPServiceLocation");
}
return View(spservicelocation);
}
如果有人可以为我参考教程,或提供一些帮助,关于我如何在这种情况下处理 FormCollection 并修改我上面的 HttpPost 以便它创建多个整体?
我的知识非常基础,因此不胜感激!