2

我使用带有百里香叶 3 的弹簧靴

我尝试显示一个 bean

在我的控制器中,我有

public String getNewCarsTemplate(Model model) {
    model.addAttribute("cars", new Cars());
}       

在我有的车里

@OneToOne
private Cities cities;  // field id and name

@OneToMany(mappedBy = "car")
private List<Locations> locations = new ArrayList<>();

在我的位置

private Integer id;

private String name;

@ManyToOne
private Suppliers supplier;

在我的百里香片段中

<form id="carsForm" action="#" th:action="@{/template/new/cars}" th:object="${cars}" th:method="post">
    ...
    <input type="hidden" th:field="*{cities.id}" > 
   <input id="carsCities" class="form-control js-typeahead" type="search" placeholder="Type partial value" th:field="*{cities.name}" autocomplete="off" >
    ...
    <table id="locationsTable" class="table table-striped table-hover responsive">
        <thead>
            <tr>
                <th th:text="#{name}">Name</th>
                <th></th>
            </tr>
        </thead>
        <tbody>
            <tr th:each="car, stat : ${cars}">
                <td> 
                    <input type="hidden" th:id="${'locationId-'+stat.index}"  th:field="*{car.locations[__${stat.index}__].id}" />
                    <input type="text" class="form-control" th:id="${'locationName-'+stat.index}" th:placeholder="#{name.placeholder}" placeholder="Name" th:field="*{car.locations[__${stat.index}__].name}" />
                </td>
                <td class="align-middle"> <i class="fas fa-trash-alt"></i></td>
            </tr>
        </tbody>
    </table>

</form>

当我尝试显示这个片段时,我得到

org.attoparser.ParseException:评估 SpringEL 表达式的异常:“cities.id” 原因:org.springframework.expression.spel.SpelEvaluationException:EL1008E:在“java.util.ArrayList”类型的对象上找不到属性或字段“id” ' - 也许不公开或无效?

4

1 回答 1

0

你可以尝试替换

<input type="hidden" th:field="*{cities.id}" > 

<input type="hidden" th:field="*{cities?.id}" > 

让我知道这是否适合你。这 '?' 操作员将解决在 new Cars() 对象中城市为空的问题

于 2018-05-13T23:52:41.827 回答