gpt4 book ai didi

symfony - Twig 文件中两个变量的除法。

转载 作者:行者123 更新时间:2023-12-03 16:28:59 26 4
gpt4 key购买 nike

我在 Twig 文件中有以下两个变量。

{%set sanstha_target%}
{%render 'FrontBundle:Datasheet:getCurrentTarget' with {'dealer':recent_entry.id,'month':recent_entry.year~recent_entry.month,'type':'3'}%}
{%endset%}

{%set sanstha_actual%}
{%render 'FrontBundle:Datasheet:getTotal' with {'datasheet':recent_entry.datasheet,'dealer':recent_entry.id,'type':'3'}%}
{%endset%}

当我要划分这个得到这个错误时:
An exception has been thrown during the rendering of a template ("Notice: Object of class Twig_Markup could not be converted to int...

我需要得到这样的百分比
{{ (sanstha_actual/sanstha_target)*100}}

最佳答案

我认为你必须使用两个斜线,即

{{ (sanstha_actual // sanstha_target) * 100 }}

documentation 所示:

//: Divides two numbers and returns the floored integer result. {{ 20 // 7 }} is 2

关于symfony - Twig 文件中两个变量的除法。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23760183/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com