Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Perl の Template Toolkit で値を丸める必要があります。しかし、私は使用できませんceil()。
ceil()
[%interestRate = ceil(mortgage.interest_rate / 100)%]
答えはnull値を示します。
null
提供する構文ceilは
ceil
$c->stash->{ceil} = sub { ceil($_[0]) }; [% c.ceil(c.mortgage.interest_rate / 100) %]
ただし、通常は、テンプレートの外で計算を行う方が適切です。
$c->stash->{mortgagetInterestRate} = ...;