跳至内容
菜单
此问题已终结
1 回复
20919 查看

For example, When I run this code:         <p><t t-esc="6.2/9"/></p>

 

I get this:                                               <p>0.688888888889</p>

 

How can I make it look like this:            <p>0.69</p>   

形象
丢弃
最佳答案

<p><t t-esc="round(6.2/9,2)"/></p>

形象
丢弃
编写者

Thank you Sajin. Where can I find this information from????

编写者

You have provided me with a lot of help with many of my questions. I appreciate it. Where do you work?

Still works in 14.0!