Detail
Fehlerbehebung
Wichtig
Fehlerbehebung
Detail
#27942
HTML-Templates: Zugriff auf Properties von Variableninhalten direkt im Template
Verbesserungen in HTML-Templates:
- Zugriff auf Properties eines Objektes direkt im Template: {obj.prop}
- Zugriff auf Properties einer Iteration: <span tl:foreach="x, it: list">...</span>. Hier iteriert x` über die Werte in `list. Gleichzeitig hat man über it Zugriff auf den aktuellen Stand der Iteration: it.first, it.last, ...
- index: The current iteration index, starting with 0.
- count: The current iteration index, starting with 1.
- size: The total amount of elements in the iterated variable.
- current: The current iteration value.
- even/`odd`: Whether the current iteration is even or odd.
- first: Whether the current iteration is the first one.
- last: Whether the current iteration is the last one.
Inspiriert von https://www.thymeleaf.org/doc/tutorials/3.1/usingthymeleaf.html#keeping-iteration-status
Test
- test.com.top_logic.html.template.TestHTMLTemplates.testPropertyAccess()
- test.com.top_logic.html.template.TestHTMLTemplates.testMapAccess()