我创建了一段 JavaScript 以在我使用 Articulate Storyline 2(eLearning 快速开发软件)构建的 eLearning 模块中运行。该代码旨在用作计算器,输出公司为新员工进行入职培训的成本。
用户将数字输入到他们浏览器中的 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(),这解释了整数问题。