如何从html中的表中的一行返回单个数据?

Posted

技术标签:

【中文标题】如何从html中的表中的一行返回单个数据?【英文标题】:How to return a single data from a row from a table in html? 【发布时间】:2016-10-13 05:17:14 【问题描述】:

我有一张表格,将产品存储在用户的购物车中。每行都有一个按钮,使用户能够从用户的购物车中删除单个产品。这是我的html的代码sn-p。

<form action="$pageContext.request.contextPath/customer/removeProduct" method="post">
        <input type="hidden" name="page" value="$page">
        <table class="table">
            <thead>
                <tr>
                    <th>Name</th>
                    <th>Quantity</th>
                    <th>Amount</th>
                </tr>
            </thead>
            <tbody>
                <c:forEach items="$productsInCart" var="product"
                    varStatus="status">
                    <input type="hidden" class="form-control" name="upc"
                            value="$product.getUpc()">
                    <tr class="warning">
                        <td>$product.getName()</td>
                        <td>$product.getQuantity()</td>
                        <td style="color: green;">&#8369; $product.getTotal()</td>
                        <td><input type="submit" class="btn btn-warning btn-xs"
                            value="Remove from cart"></td>
                    </tr>
                </c:forEach>
            </tbody>
        </table>
    </form>

这是输出。

Product in cart table

我想要获取的值是存储在隐藏输入类型字段中的产品的 UPC。但是,当单击“从购物车中删除”按钮时,它会返回购物车中产品的所有 UPC。这是控制器的代码sn-p。

@RequestMapping(value="/customer/removeProduct", method=RequestMethod.POST)
public String removeProduct(@RequestParam(value = "upc") String upc, HttpServletRequest request)

    System.out.println(upc);
//      customerService.removeProductInCart(customer.getCustomer(request).getCartId(), upc);

    return "customer_home";

【问题讨论】:

【参考方案1】:

您可能希望在每次迭代时创建表单以获取每一行的特定 upc,而不是包装整个表格。

【讨论】:

以上是关于如何从html中的表中的一行返回单个数据?的主要内容,如果未能解决你的问题,请参考以下文章

实体框架:如何从具有复合键的表中返回一行?

如何从mongodb的表中读取各字段对应的类型

如何使用代码点火器活动记录查询返回一维数组中的表字段

如何删除EXCEL表中的大量数据行,要删除的行数大概8万

如何在数据库中使用匹配属性返回所有行中的任何一行?

Laravel:如何查询包含json数据的表中的列并仅返回查询匹配的对象