如何使用模型绑定器将数据从表单+跨度值发布到数据库

时间:2016-06-26 08:58:59

标签: javascript asp.net asp.net-mvc-5 modelbinder

好时光。 我是Asp.net-MVC的新手。

我有一个从用户那里获取数据的表单,这个页面中有一个跨度,我想将输入数据和跨度值发布到我的数据库。

我想使用模型绑定器,但我不知道如何命名与我的模型相同的跨度。

这是我的行动:

[HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Create([Bind(Include = "Id,TourId,FirstName,LastName,Email,Phone,Comment,FrequentTraveler,TravelersCount,Date,ContactTimePreference,Country,Archived")] Request request)
    {
        if (ModelState.IsValid)
        {
            db.Requests.Add(request);
            db.SaveChanges();
            return RedirectToAction("Index");
        }

        return View(request);
    } 

span从JavaScript获得价值

<span class="col-md-5" id="selecteddate"></span>

这是我的表格,但我只是为速记写了一个输入。 :

 <form role="form" method="post" action="/Tour">
  @Html.AntiForgeryToken()

 <div class="form-group">
 <label for="FName">First Name:</label>
 <input type="text" name="FirstName" class="form-control" id="FName" placeholder="Enter FirstName" />


 </div>

</form>

我想将span id =“selecteddate”的值发布到名为Date的列中的数据库

感谢任何人可以告诉我它是如何可能的,或者你有更好的方法作为建议吗?

1 个答案:

答案 0 :(得分:2)

一个解决方案是向hidden html input添加<from>。当您进行提交时,您可以使用javascript将其值作为副本写入。

<form role="form" method="post" action="/Tour" onsubmit="prepare()">
  @Html.AntiForgeryToken()

 <div class="form-group">
 <label for="FName">First Name:</label>
 <input type="text" name="FirstName" class="form-control" id="FName" placeholder="Enter FirstName" />


 </div>
<input type="hidden" name="Date" />
</form>

@section Scripts {
  <script type="text/javascript">
    function prepare() {
        document.getElementsByName("Date")[0].value = document.getElementById("selecteddate").innerHtml;
    }
  </script>
}