0

如何从 Razor 中的 TextAreaFor (或其他形式的 HTML 输入)中获取每一行以供 Create 方法(或如何修改该方法)作为单独的值并插入到 DB 中的单独行中。

控制器:

[HttpPost]
public ActionResult Create(Names name)
{
    unitofwork.Names.Insert(name);
    unitofwork.save();

    return RedirectToAction("Index");
}

看法

@Html.TextAreaFor(model => model.name)

Names模型

[Key]
public int NameID { get; set; }
[Required]
public string Opinion { get; set; }

[Required]
public int ID { get; set; }
public virtual NickName NickName { get; set; }
4

1 回答 1

2

尝试这样的事情:

[HttpPost]
public ActionResult Create(Names name)
{
    var names = name.Split(new[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries)
    foreach(var n in names) 
    {
        unitofwork.Names.Insert(n);
    }

    unitofwork.save();

    return RedirectToAction("Index");
}
于 2013-11-05T16:20:31.583 回答