0

我是 Thymeleaf 的新手,但我还有其他一些页面在工作。但是,这是我第一次使用 th:each 并且出现错误。在运行时,我得到“在 null 上找不到字段或属性‘licenseName’”。我运行了调试,并在我的 ModelAnView 对象中传递了一个对象的 ArrayList。我已经将模型键复制并粘贴到 th:each 属性中,以防万一我输入错误。这是有问题的代码:

                    <select th:remove="all-but-first" id="accountPlans">
                        <option th:each="license : ${availableLicenses}" th:text="${licnese.licenseName}" value="None">-- Select a Plan --</option>
                        <option value="Free">Free - A plan to learn the basics</option>
                        <option value="Intro">Intro - Starter plan for a small founding group</option>
                        <option value="Basic">Basic - A plan for a small group</option>
                    </select>
4

1 回答 1

0

你有一个错字licnese.licenseName而不是license.licenseName. 这可能是您错误的原因

于 2013-08-12T22:44:43.347 回答