简体   繁体   English

Spring Boot & Thymeleaf,将变量传递给控制器

[英]Spring Boot & Thymeleaf,passing variables to the controller

I have a controller that processes the purchase of a product,it takes two parameters,count - the quantity of the product and id - the ID of the product that the user buys.我有一个处理产品购买的控制器,它需要两个参数,count - 产品的数量和 id - 用户购买的产品的 ID。

@PostMapping("/buyproduct")
public String buyProduct(@RequestParam int count,@RequestParam long id){
    Product product = productRepository.findById(id);
    int activeCount = product.getCount();
    if (activeCount-count<0){
        return "redirect:/";
    }
    product.setCount(activeCount-=count);
    productRepository.save(product);
    return "redirect:/buyproductsuccessful";
}

In index.html I have listed all available products in the database using Thymeleaf.在 index.html 中,我使用 Thymeleaf 列出了数据库中所有可用的产品。

<div class="col-12 col-md-6 col-lg-4" th:each="element : ${products}">
        <div class="card">
            <img class="card-img-top" src="https://picsum.photos/362/180" alt="Card image cap">
            <div class="card-body">
                <h5 style="text-align: center" class="card-title" th:text="${element.getName()}"</h5>
                <span th:text="${element.getCost()}"></span></p>
                <span th:text="${element.getCount()}"></span> </p>
                ...

Each product has its own button,when clicked, a popup opens in which you need to enter the quantity of the purchased product and Bank data (I don't process them, I don't Need them yet), and there is also a hidden field in which I want to put the product ID so that it can be passed to the controller later.每个产品都有自己的按钮,点击后会弹出一个窗口,需要输入购买产品的数量和银行数据(我不处理它们,我不需要它们),还有一个我想在其中放置产品 ID 的隐藏字段,以便稍后将其传递给控制器​​。

<form action="#" th:action="@{/buyproduct}" th:object="${element}" method="post">
                                <!-- Modal Header -->
                                <div class="modal-header">
                                    <h4 class="modal-title" style="color: #368819"></h4>
                                    <button type="button" class="close" data-dismiss="modal">&times;</button>
                                </div>

                                <!-- Modal body -->
                                <div class="modal-body">
                                    <div>
                                        <input type="hidden" name="id" th:value="*{getId()}">
                                        <label><b>რაოდენობა</b></label><br>
                                        <input class="col-4" type="number" min="1" value="1" name="count" required><br><br>
                                        <label><b></b></label><br>
                                        <input class="col-12" type="text"><br><br>
                                        <label><b></b></label><br>
                                        <input class="col-12" type="date"><br><br>
                                        <label><b>CVV/CVC</b></label><br>
                                        <input class="col-4" type="text"><br><br>
                                    </div>
                                </div>

                                <!-- Modal footer -->
                                <div class="modal-footer">
                                    <button type="submit" class="btn btn-success"></button>
                                    <button type="button" class="btn btn-danger" data-dismiss="modal"></button>
                                </div>
                                </form>

But Thymeleaf passes the id of the first product every time,what is my mistake?但是 Thymeleaf 每次都传递第一个产品的 id,我的错误是什么?

The problem was with Bootstrap modal scopes.问题在于 Bootstrap 模态范围。

<button style="margin-left: 40%" type="button" class="btn btn-success" data-toggle="modal" data-target="#myModal">
<div class="modal" id="myModal">

After fix its looks like this.修好之后就是这个样子。

<button style="margin-left: 40%" type="button" class="btn btn-success" data-toggle="modal" th:attr="data-target='#id-' + ${element.getId()}">
<div class="modal" th:id="'id-' + ${element.getId()}">

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM