我有两个不同值的变量
{{ timelineExpectedAmount }} //1.996.626,32
和
{{ customTimelineExpectedAmount }} //6.104,77
我想知道,如何计算customTimelineExpectedAmount
的{{1}}%{。}}。
我试过这个:timelineExpectedAmount
但是没有用。
任何提示?预期结果为{{ timelineExpectedAmount / 100 * customTimelineExpectedAmount }}
答案 0 :(得分:2)
更多的是数学问题......
var perc = 6104.77 / 1996626.32 * 100;
console.log(perc); // 0.3057542585134308

或者,在您的情况下:
{{ customTimelineExpectedAmount / timelineExpectedAmount * 100 }}
您可能需要round the result。