Spring MVC @ModelAttribute正在返回带有thymeleaf的空值

uqxowvwt  于 2023-10-24  发布在  Spring
关注(0)|答案(2)|浏览(188)

经过几天的研究,我很难为我的控制器方法找到解决方案。我有两个控制器方法似乎有问题。储蓄方法是保存空值。我不知道如何绑定值,正在输入到字段中,一个用于创建输入字段的值,另一个用于保存输入值并更新列表/all.我想获取我放入表单字段中的值,并使用新值更新列表/all。请注意,我只尝试保存整个类的11个属性中的两个。该类具有双精度值和true/false。除了重要的String值外,这些值正在保存到db中。感谢您的帮助!
第一种方法:

@GetMapping("/create")
    public String showCreateForm(Model model, Branch branch) {
        List<Branch> branches = new ArrayList<>();
        BranchCreationDto branchesForm = new BranchCreationDto(branches);

        for (int i = 1; i <= 1; i++) {
            // the input field
            branchesForm.addBranch(new Branch());
        }

        model.addAttribute("form", branchesForm);
        return "branches/create";
    }

此方法有一个输入字段,可以在其中设置分支的值。
第二种方法:

@PostMapping("/saving")
public String saveBranches(@ModelAttribute BranchCreationDto form, Model   model, Branch branch) {

    // saves null but needs to be saving the values that are being typed into the field
    this.branchRepository.saveAll(form.getBranches());

    model.addAttribute("branches", branchRepository.findAll());

    return "redirect:/all";

}

这种方法似乎有问题,
transmitted. transmitted(transmitted);
它返回空值。我已经尝试将分支.getName(),分支.getType()放入参数中。这不起作用。
使用方法/all,程序将返回列表。

@GetMapping("/all")
public String showAll(Model model) {
    model.addAttribute("branches", branchRepository.findAll());
    return "branches/all";
}

这是我的 Package 类

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;

public class BranchCreationDto {

@Autowired
private List<Branch> branches;

    public BranchCreationDto(List<Branch> branches) {
        this.branches = branches;

    }

    public BranchCreationDto() {

    }

    public void addBranch(Branch branch) {
        this.branches.add(branch);
    }

    public List<Branch> getBranches() {
        return branches;
    }

    public void setBranches(List<Branch> branches) {
      this.branches = branches;
    }

}

这是表格

<body>

<!-- Save -->
<form action="#" th:action="@{saving}" th:object="${form}"
    method="post">
    <fieldset>
        <input type="submit" id="submitButton" th:value="Save"> <input
            type="reset" id="resetButton" name="reset" th:value="Reset" />
        <table>
            <thead>
                <tr>
                    <th>Branch</th>
                    <th>Type</th>
                </tr>
            </thead>
            <tbody>
                <tr th:each="branch, itemStat : *{branches}">
                    <td><input th:field="*{branches[__${itemStat.index}__].branch}" /></td>
                    <td><input th:field="*{branches[__${itemStat.index}__].type}" /></td>
                </tr>
            </tbody>
        </table>
    </fieldset>
</form>
jv4diomz

jv4diomz1#

只需将该字段添加为隐藏输入,thymeleaf就会发送您的更改:

<input type="hidden" th:field="*{branches}"/>
abithluo

abithluo2#

你做错了,值不通过这种方式从控制器传递到Thymeleaf。我给你给予一个例子。例子:控制器:

ModelAndView model = new ModelAndView();
model.put("branches", branchRepository.findAll());
return model;

百里香叶:

<input id="branches" type="hidden" th:value="${branches}"/>

现在你的值被传递到id分支。

相关问题