将HTML表内容获取到MVC Controller

时间:2019-02-07 14:50:13

标签: jquery asp.net-mvc model-view-controller html-table postback

  

更新此帖子的底部

我有一个HTML表格,看起来像:

<table class="table table-hover" id="selectedProductsForContract">
    <thead>
        <tr>
            <th>Product</th>
            <th>Quantity</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td class="col-md-8">
                <p>Product name</p>
            </td>
            <td class="col-md-1">
                <input type="number" class="form-control" value="1">
            </td>
            <td class="col-md-2">
                <button type="button" class="btn btn-danger">
                    Remove
                </button>
            </td>
        </tr>

    </tbody>
</table>

我打算在选择时使用列表框中的值动态填充。我正在使用@Html.ListBox()

生成列表框
@Html.ListBox("allProducts", allProductsForSupplier, new { ID = "allProductsListbox", @class = "form-control", @onclick = "AddSelectedProductToTable()" })

列表框的onclick事件如下:

<script>
    function AddSelectedProductToTable() {

    var selectedProduct = $("#allProductsListbox option:selected").text();    

    $("#selectedProductsForContract").find('tbody')
        .append($('<tr>' +
            '<td class="col-md-8"><p>' + selectedProduct + '</p></td>' +
            '<td class="col-md-1"> <input type="number" class="form-control" value="1"> </td>' +
            '<td class="col-md-2">  <button type="button" class="btn btn-danger" onclick="RemoveSelectedProductFromTable(this)"> Remove </button > </td>' +
            '</tr>'));

    }
</script>

这正是我想要的,并且产生了以下内容: enter image description here

填充表格后,我需要将选择的产品名称和金额回发到服务器。

我尝试了几件事,但是最接近的是使用以下内容:

<script type="text/javascript">
    $(function () {
      $("#btnInsert").click(function () {
        var itemlist = [];

        //get cell values, instead of the header text.
        $("table tr:not(:first)").each(function () {
            var tdlist = $(this).find("td");
            var Item = { ID: $(tdlist[0]).html(), Name: $(tdlist[1]).html() };
            itemlist.push(Item);
        })

        $.ajax({
            url: '@Url.Action("InsertValue", "Contract")', //
            dataType: "json",
            data: JSON.stringify({ itemlist: itemlist }),
            type: "POST",
            contentType: "application/json; charset=utf-8",
            success: function (result) {
                alert("success");
            },
            error: function (xhr) {
                alert("error");
            }
        });
      });
    });
</script>

哪个POST返回到以下控制器:

[HttpPost]
public JsonResult InsertValue(Item[] itemlist)
{
    foreach (var i in itemlist)
    {
        //loop through the array and insert value into database.
    }
    return Json("Ok");
}

并产生以下输出: enter image description here

我认为有一种比我现在正在做的方法更好的方法,但是这里有些迷失了,我认为用正则表达式或字符串操作解析HTML并不是解决问题的方法...

任何人都可以建议/指导我采取一种体面的方式做我想要的事情吗? 如有任何疑问,请询问。

亲切的问候!

更新 感谢@Adyson,我将AddSelectedProductToTable()更改为以下内容:

 $("table tr:not(:first)").each(function () {

        var tdlist = $(this).find("td");
        var input = $(tdlist[1]).find("input");

        var Item = { ID: $(tdlist[0]).text(), Name: $(input[0]).val() };
        itemlist.push(Item);   

    })

已添加var input = $(tdlist[1]).find("input");的位置,我需要将以下部分的 text()更改为 val()Name: $(input[0]).val()能够检索值。

非常感谢您!

1 个答案:

答案 0 :(得分:1)

与其回发HTML代码段,不如回发HTML中的值。

您可以使用jQuery提取这些内容,例如使用.text()来获取td中的文本(而不是.html()),或使用.val()来获取输入字段中的值(输入字段本身位于另一个{{1 }}, 当然)。

使用jQuery(专用于此目的)解析客户端的值比尝试在服务器上解析要容易得多。而且,这样您就不会来回发送毫无意义的额外HTML标记。

P.S。像td之类的东西应该会出现在您的文本框中(假设它位于行的索引1之内)。然后,您可以使用var tb = $(tdlist[1]).find("input")提取在框中输入的值。