0
我想在速度中添加兩個值,它總是返回0.我做錯了什麼?爲什麼在nVelocity中添加兩個值總是返回零?
#set ($tmpPrice = $orderItem.ExtendedPrice + $discountAmount)
兩個$ orderItem.ExtendedPrice & $ discountAmount與小數整數,像這樣:99.99
我想在速度中添加兩個值,它總是返回0.我做錯了什麼?爲什麼在nVelocity中添加兩個值總是返回零?
#set ($tmpPrice = $orderItem.ExtendedPrice + $discountAmount)
兩個$ orderItem.ExtendedPrice & $ discountAmount與小數整數,像這樣:99.99
我想通了:
#set ($tmpPrice = $orderItem.ExtendedPrice.ToDecimal(null) + $discountAmount.ToDecimal(null))
:)
嘗試$tmpPrice = ($orderItem.ExtendedPrice + $discountAmount)