获取左边的数字以匹配乘法6

时间:2016-07-05 11:20:07

标签: twig

我有一个变量{{ product.amount }},需要显示乘以6的剩余数量。

因此,例如{{ product.amount }}为20.因此必须输出4。 (24)

我该怎么做?

2 个答案:

答案 0 :(得分:3)

您可以直接在树枝模板中使用模数,如documentation said

 ---
 - hosts: droplets
   remote_user: root

   tasks:

    - name: Copy package to target machines
      synchronize: src=/home/luckee/apache.rpm dest=/var/tmp/
      register: result_copy


    - name: Run installation and verification script
      script: /home/luckee/apache_install.sh
      register: result_run
      when: result_copy.changed

    - name: Show result
      debug: msg="{{ result_run.stdout }}"
...

答案 1 :(得分:1)

你可以使用 modulo 来计算除法的其余部分,然后计算差值

select 6-(20 % 6) as Solved