我是Asp.net MVC的新手

我需要一些建议,以了解如何制作一个计数器,然后将其值提供给粘结剂模型。

我有两个modal Pages。在第一个页面中,我有这个计数器供用户选择其请求编号,如下所示:
当用户单击加号图标时,数字已更改By Javascript

javascript - 使用ASP MVC将范围数据绑定(bind)到数据库,使用Model Binder-LMLPHP

当用户单击“下一步”按钮时,将显示下一个模式页面,我在其中有selecteddatenumber of travelers。以及我希望模型活页夹成为其对象的形式。

这是我的下一个模态页面的摘要

<p>
 <span  id="selecteddate"></span>


  <span id="selectedcount"></span>


  <span id="selectedprice"></span>
</p>


这是javascript:

$(".nextbtn").click(function () {

$("#selecteddate").html("Selected Date is : "+$("#showdate").html());
$("#selectedprice").html("Total Price is : " + $("#tpriceforall").html());
$("#selectedcount").html($("#shownum").html());
 });


它可以正常工作。

在下一个模态页面中我也有一个表单。我想将用户的输入数据传递给数据库+在span #selectedcount中可用的编号。

因为我想使用java script set it each time,所以有一个输入将被隐藏。
只是为了传递数据。这是我的请求模型的TravellersCount的输入

<div class="form-group">
@Html.LabelFor(model => model.Request.TravelersCount, htmlAttributes: new {@class = "control-label col-md-2" })
 <div class="col-md-10">
   @Html.EditorFor(model => model.Request.TravelersCount, new { htmlAttributes = new { @class = "form-control", @*@Value=?????*@ } })
@Html.ValidationMessageFor(model => model.Request.TravelersCount, "", new { @class = "text-danger" })
 </div>
</div>


我应该在ModelBinder中为Value写什么?

或者,如果这种方式是完全不规则的,请给我建议一个新方法。
非常感谢您的帮助。谢谢

最佳答案

您的EditorFor()方法使用id="Request_TravelersCount"创建输入。

要在单击按钮时更新其value,可以使用

$(".nextbtn").click(function () {
    $("#selecteddate").html("Selected Date is : "+$("#showdate").html());
    $("#selectedprice").html("Total Price is : " + $("#tpriceforall").html());
    var num = $("#shownum").html();
    $("#selectedcount").html(num);
    $('#Request_TravelersCount').val(num);
});


旁注:您不应尝试在HtmlHelper方法中设置value属性(该方法将考虑ModelState值来设置正确的值)

关于javascript - 使用ASP MVC将范围数据绑定(bind)到数据库,使用Model Binder,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38197172/

10-09 18:20
查看更多