2

我遇到了一个非常非常非常奇怪的 JS 问题,该问题仅在 iOS 6 上的 Mobile Safari 浏览器上重现。问题在于将给定值格式化为价格的函数,通过将数字去除到小数点后 2 位并将货币添加到号码的前面。以下是功能。稍后我将解释如何重现该错误。

formatCurrency = function(value, currency, fixedPrecision, colourize, blankIfZero) {
    var text;

    if (blankIfZero && (Math.abs(value) < 0.01 || value === undefined)) {
         return "";
    }

    if (fixedPrecision) {
        text = currency + Math.abs(value).toFixed(2);
    } else {
        text = currency + roundTo2Decimals(Math.abs(value));
    }

    if (value < 0) {
        text = "-" + text;
    }

    if (colourize) {
        var colorClass = (value < 0 ? "negative" : "positive");
        text = "<span class='" + colorClass + "'>" + text + "</span>";
    }

    return text;
};

roundTo2Decimals = function(value) {
    var sign = value < 0 ? -1 : 1;
    return Math.round(Math.abs(value) * 100.0)/100.0 * sign;    
};

如果我一遍又一遍地运行 formatCurrency 函数(例如在 setInterval 内),使用相同的值(比如 value=1; 和 currency="GBP"),您会注意到每 800-1000 次迭代返回的值是该函数包含一个负数:GBP-1 而不是 GBP1。这个问题很烦人,我在 JS 函数中没有发现任何问题。

我设法解决了这个问题......但我很好奇这个实现有什么问题。[编辑:我通过从“roundTo2Decimals(Math.abs(value))”中删除“-”字符解决了这个问题。但是“-”字符不应该首先出现。所以修复实际上是一种解决方法。]

我错过了什么吗?

4

1 回答 1

-1

我猜;

文本 = “-” + 字符串(文本);

是问题。

我也一直在寻找 Safari 中与 iOS6 相关的错误。如果我们想让 JS 执行流畅,看起来 JS 应该更干净!

于 2012-10-16T05:06:44.280 回答