对不起我的英语不好!
我是Spring和FTL的新手。
我想使用firstName模板显示lastName<#list,但是我在POST方法中无法识别任何序列,请向我解释一下。同样,我是新手,如果我不明白我该怎么做,请不要对我进行评判。我正在使用CUBA STUDIO 6.8和IDEA。我也在门户模块中完成此任务

这是我使用ftl表单和Portal Controller将firstNamelastName添加到数据库的方式:

@GetMapping("/add")
public String add(Model model){
    PersonPojo personPojo = new PersonPojo();
    model.addAttribute("personPojo", personPojo);
    return "add";
}

@PostMapping("/add")
public String save(Model model, @ModelAttribute("personPojo") PersonPojo personPojo){

    String firstName = personPojo.getFirstName();
    String lastName = personPojo.getLastName();
    PersonPojo newPerson = new PersonPojo(firstName, lastName);

    Person standardEntity = metadata.create(Person.class);
    standardEntity.setFirtName(newPerson.getFirstName());
    standardEntity.setLastName(newPerson.getLastName());
    dataManager.commit(standardEntity);

    return "redirect:/allPersons";
}


我的FTL表格:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<form action="" method="post" name="person">
    First Name: <input type="text" name="firstName"> <br>
    Last Name: <input type="text" name="lastName"> <br>
    <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}">
    <input type="submit" value="Create">
</form></body>
</html>


谢谢!

最佳答案

因此,如果有人感兴趣,我将在此处发布我的解决方案:

 @RequestMapping(value = "/allPersons", method = RequestMethod.GET)
    public String getPersons(Model model) {
            LoadContext loadJohn = new LoadContext(John.class);
            loadJohn.setQueryString("select u from test6$John u");
            model.addAttribute("users", dataService.loadList(loadJohn));
            return "list";
    }


FTL应该看起来像这样:
我接下来面临的问题是我不知道我必须检查清单是否为空。 !“”

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h3>Person List</h3>
<a href="/app-portal/add">Add Person</a>
<br><br>
<div>
    <table border="1">
        <tr>
            <th>First Name</th>
            <th>Last Name</th>
        </tr>
        <#list users as show>
            <tr>
                <td>${show.firstName!""}</td>
                <td>${show.lastName!""}</td>
            </tr>
        </#list>
    </table>
</div>
</body>
</html>


我希望这会对像我这样的人有所帮助。
另外,如果有人知道如何删除和更新数据,请共享。
谢谢!

10-04 21:52