jsrender模板中的基本数学运算

时间:2019-04-10 21:06:19

标签: jsrender

我想实现jsrender模板中数据的加,乘,除。例如,

{{:num1 * (-1.0)}} - {{:num2}} + {{:num3}}

以上情况在我的以下情况下不起作用:

<circle r="25%" cx="50%" cy="50%" style="stroke-dasharray: {{:num3}} 100; stroke: orange; stroke-dashoffset: {{:num1 * (-1.0)}} - {{:num2}}- {{:num3}}">
    </circle>

1 个答案:

答案 0 :(得分:0)

在此处https://www.jsviews.com/#paths

中查看表达式示例

您可以编写,例如:

...stroke-dashoffset: {{:num1 * (-1.0) - num2 - num3}}...

...stroke-dashoffset: {{:num1*(-1.0)-num2-num3}}...

如果您希望它呈现表达式的结果,而不是单独的值。