JavaScript在本地工作,但不在线,并且四舍五入到整数而不是小数。 [Articulate Storyline]

时间:2017-04-03 09:32:42

标签: javascript articulate-storyline articulate

我创建了一个JavaScript,用于在我使用Articulate Storyline 2(电子教学快速开发软件)构建的电子教学模块中运行。该代码旨在用作计算器,输出公司为新员工运行导入所需的费用。

用户在他们的浏览器中将数字输入到Storyline播放器/电子教学模块中。代码检索这些输入并将其存储在变量中。此信息用于进行计算,用户在浏览器的最终屏幕上获取结果。

奇怪的是,JavaScript在本地运行没有问题,但是当它上传到我们的服务器时,结果总是返回为零。我不确定为什么会这样。

此外,数字总是整数。他们永远不会像13,553.99英镑一样回来。它通常将其舍入到最接近的整数,例如£13,554.00。

如果有人能给我一些建议,我真的很感激。我已经包含了代码和注释,因此您可以看到我所做的事情。如果您需要更多信息,请告诉我。

// Retrieve variables from Storyline file.
var player=GetPlayer();

// Assign Storyline variables to JS variables. Each letter represents a data entry box in the elearning module.
var aa = player.GetVar("a");
var bb = player.GetVar("b"); 
var cc = player.GetVar("c");  
var dd = player.GetVar("d"); 
var ee = player.GetVar("e");
var ff = player.GetVar("f"); 
var gg = player.GetVar("g");  
var hh = player.GetVar("h"); 
var ii = player.GetVar("i");
var jj = player.GetVar("j"); 
var ll = player.GetVar("l");  
var qq = player.GetVar("q");  

// Convert strings to integers
var aa = parseInt(aa);
var bb = parseInt(bb);
var cc = parseInt(cc);
var dd = parseInt(dd);
var ee = parseInt(ee);
var ff = parseInt(ff);
var gg = parseInt(gg);
var hh = parseInt(hh);
var ii = parseInt(ii);
var jj = parseInt(jj);
var ll = parseInt(ll);
var qq = parseInt(qq);

// Add comma to thousands.
function addCommas(nStr)
{
    nStr += '';
    x = nStr.split('.');
    x1 = x[0];
    x2 = x.length > 1 ? '.' + x[1] : '';
    var rgx = /(\d+)(\d{3})/;
    while (rgx.test(x1)) {
        x1 = x1.replace(rgx, '$1' + ',' + '$2');
    }
    return x1 + x2;
}

// Use the numbers stored in the variables to do the induction calculations.
// # per month
var mm = aa * 12;

// £ new recruit/hr + £ trainer/hr
var ss = bb + cc; 

// Duration mins
var nn = dd / 60;

// (Room booking admin mins + admin records) / 60 * £ admin/hr
var oo = (ee + gg) / 60 * ff;

// Repeating hrs/month
var pp = jj * (bb + cc);

// # of trainers
var rr = (ll * qq) * (cc + cc); 

//Results calculations
var tt = (ss * nn) + oo; 

var uu = tt + hh + ii;

var vv = uu * mm;

var ww = pp * 12;

// Calculate final result, round to 2 decimal places and convert number to a string. Add comma to define thousands.
var total = vv + ww + rr;
var totalRnd = total.toFixed(2);
var totalStr = totalRnd.toString();
var totalCost = addCommas(totalStr);

// Sends result back to Storyline.
player.SetVar("result",totalCost);

更新:我使用parseInt()而不是parseFloat(),这解释了整个数字问题。

1 个答案:

答案 0 :(得分:1)

parseInt将输入解析为整数值。您需要使用parseFloat代替。然而,奇怪的是,这在当地为您服务。我认为你有整数值,所以parseInt并没有破坏精确性。