有沒有在表達式中使用片段參數的方法?Thymeleaf:如何在表達式中使用片段參數
我想創建一個片段來顯示帶有相應綁定錯誤的字段,例如像:
<div th:fragment="alert (field, fieldLabel)">
<label><span th:text="${fieldLabel}">Label:</span><input type="text" th:errorclass="field_error" th:field="*{field}"/></label>
<div th:if="${#fields.hasErrors(field)}"><span th:errors="*{field}">Some error</span></div>
</div>
獲取片段用:
<div th:replace=":: alert (field='firstName', fieldLabel='Firstname')">Field</div>
如何使用在第i個表達式的字段參數:場和TH:錯誤的屬性? * {field}至少不起作用。
'_ _ $ {field} _ _'這樣做,謝謝。 – James