如何填充从下拉表单值?(How to populate a form value from a dr

2019-10-16 14:54发布

后续从这个问题 :如果我想计算基于从下拉列表中的用户选择一个值,这个值放到一个表单变量/模型属性,我该怎么办呢?

Answer 1:

说真的,如果我有一个建议给任何ASP.NET MVC开发,这将是: 使用视图模型,而忘记了ViewBag / ViewData的 。 在这是解决他的问题/问题,99%的情况。

因此,这里的最小视图模式,让你正确地代表一个下拉列表:

public class MyViewModel
{
    // a scalar property on the view model to hold the selected value
    [DisplayName("item")]
    [Required]
    public string ItemId { get; set; }

    // a collection to represent the list of available options
    // in the drop down
    public IEnumerable<SelectListItem> Items { get; set; }

    ... and some other properties that your view might require
}

然后有一个控制器操作将填充,并通过该视图模型的视图:

public ActionResult Index()
{
    var model = new MyViewModel
    {
        // TODO: those values probably come from your database or something
        Items = new[]
        {
            new SelectListItem { Value = "1", Text = "item 1" },
            new SelectListItem { Value = "2", Text = "item 2" },
            new SelectListItem { Value = "3", Text = "item 3" },
        }
    };
    return View(model);
}

然后你可以有一个相应的强类型的视图可能包含一种形式,在下拉列表这个视图模型:

@model MyViewModel
@using (Html.BeginForm())
{
    @Html.LabelFor(x => x.ItemId)
    @Html.DropDownListFor(x => x.ItemId, Model.Items, "--Select One--")
    <button type="submit">OK</button>
}

最后你可以有你的控制器,此表单将提交和内,您将能够检索从下拉列表中选择的值上相应的动作:

[HttpPost]
public ActionResult Index(MyViewModel model)
{
    // model.ItemId will contain the selected value from the dropdown list
    ...
}


Answer 2:

我猜你想使用基于在下拉列表中选择的项目Ajax获得该项目的价格数据并发送到你的动作方法,正常形态后的部分(从上一个问题的信息)。

步骤1)为产品创建视图模型。

public class ProductViewModel
{
    public string SelectedItemId { get; set; }
    public IEnumerable<SelectListItem> Items { get; set; }
    public decimal ItemPrice { set; get; }
}

第二步)创建产品控制器这样

public class ProductController : Controller
{
    public ActionResult Index()
    {
        var objProduct = new ProductViewModel();
        objProduct.Items = new[]
        {
            new SelectListItem { Value = "1", Text = "Perfume" },
            new SelectListItem { Value = "3", Text = "Shoe" },
            new SelectListItem { Value = "3", Text = "Shirt" }
        };
        return View(objProduct);
    }
    [HttpPost]
    public ActionResult Index(ProductViewModel objProduct)
    {
        //Validate and Save to DB and do whatever            
        return View(objProduct);
    }
    public string GetPrice(int itemId)
    {
        decimal itemPrice = 0.0M;
        //using the Id, get the price of the product from your data layer and set that to itemPrice variable.
        itemPrice = 23.57M;
        return itemPrice.ToString();
    }
}

步骤3)添加强类型视图

@model MvcApplication1.Models.ProductViewModel
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

@using (Html.BeginForm())
{    
    @Html.DropDownListFor(x => x.SelectedItemId, Model.Items, "Select..")
    <div id="divItemPrice"> </div>
     @Html.HiddenFor(x=>x.ItemPrice)       
    <button type="submit">Save</button>
}
<script type="text/javascript">
$(function(){
  $("#SelectedItemId").change(function(){
    var val=$(this).val();  
    console.debug(val);    
    $.get("@Url.Action("GetPrice","Product")",  { itemId : val },function(data){
      $("#ItemPrice").val(data);
      $("#divItemPrice").html(data);
    });     
  });
});
</script>

当你在下拉改变所选择的项目下来,使用jQuery AJAX,它会做出用getPrice操作方法的调用,并获取数据。 它显示在div并将其设置为HiddenField为ITEMPRICE价值。

并且当你发布表单,您将有它存在于视图模型公布。

希望这可以帮助。



文章来源: How to populate a form value from a drop-down?