The quote below states that HTML ignores (the browser?).
Quote:
Most processors in standard directions are "attribute processors."Attribute processors allow you to view XHTML/HTML5 template files correctly in your browser even before they are processed.This is simply because the attribute is simply ignored.For example, a JSP using a tag library might not be able to display directly in your browser:
<form:inputText name="userName" value="${user.name}"/>
This is how the Thymeleaf Standard Dialect delivers similar features:
<input type="text" name="userName" value="James Carrot" th:value="${user.name}"/>
In addition to being able to display correctly in your browser, you can also specify the value attribute (optional) (the "James Carrot" part in this case).This value is displayed when the prototype is statically opened in the browser, and replaced by an evaluation value of ${user.name} when Thymeleaf processes the template.
I'm not familiar with writing th:value
using colons for attributes, but what specifications of HTML ignore this?
Spring Boot and Thymeleaf combined, not HTML specifications.
4.1.We recommend that you read the article on the template engine (Thymeleaf).
As illustrated in Section 4.1.1.3 of the article, there are a number of actions to be taken from receiving a request to returning a response.
© 2024 OneMinuteCode. All rights reserved.