2014-02-14 5 views
2

Как я могу выполнить некоторую арифметическую операцию в тимелеафе. Я протестировал так. Но неспособность получить выход. Пожалуйста, дайте мне знать Вот мой код.Арифметическая операция в тимелеафе

/*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 --</div> 

ответ

10

Как это:

<div th:with="result=${obj.baseRetailPrice * obj.aa}"> 
    <span th:text="${result}"></span> 
</div> 
+0

Вы можете сделать это без DIV, а также. – user3344977

Смежные вопросы