Thymeleaf中的算术运算

我如何在百里香中进行一些算术运算。我已经测试了很多方法。但是无法获得输出。如果您知道,请告诉我。

这是我的代码:

/*Dummy Content */ 

<p class="quan-inc-dec">

<input type="hidden" name="productId" th:value="*{product.id}" class="productId"/>

<input type="hidden" name="orderItemId" th:value="*{id}" class="orderItemId"/>

<input type="button" name="minus" class="minus" value="-" autocomplete="off"/>

<input type="text" name="quantity" value="1" class="result" autocomplete="off" th:value="*{quantity}"/>

<input type="button" name="plus" class="plus" autocomplete="off" value="+"/>

</p>

/*Dummy Content End*/

<span th:text="${${obj.baseRetailPrice}*${obj.aa}}"><!-- I need the Result Here --></span>

回答:

像这样:

<div th:with="result=${obj.baseRetailPrice * obj.aa}">

<span th:text="${result}"></span>

</div>

以上是 Thymeleaf中的算术运算 的全部内容, 来源链接: utcz.com/qa/431622.html

回到顶部