我想实现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>
答案 0 :(得分:0)
在此处https://www.jsviews.com/#paths
中查看表达式示例您可以编写,例如:
...stroke-dashoffset: {{:num1 * (-1.0) - num2 - num3}}...
或
...stroke-dashoffset: {{:num1*(-1.0)-num2-num3}}...
如果您希望它呈现表达式的结果,而不是单独的值。