BigDecimal JavaScript 库错误 - “wrap_meth.inner_method”为 null 或不是对象

发布于 2024-12-29 21:27:53 字数 720 浏览 0 评论 0原文

我正在使用 JavaScript 的 BigDecimal 库。

https://github.com/iriscouch/bigdecimal.js

var val1 = new BigDecimal(document.getElementById('id1').value);

var val2 = new BigDecimal(document.getElementById('id2').value);

var val3 = val1.add(val2);

add 方法在 Firefox 中有效,但是在IE8上出现以下错误。

消息:“wrap_meth.inner_method”为 null 或不是对象
线路:582
字符:9
代码:0
URI: http://localhost:8080/AppName/js/bigdecimal.js

它给出对于其他大十进制方法(如compareTo和setScale),我也遇到同样的错误。

我该如何解决该错误?

I am using the BigDecimal library for JavaScript.

https://github.com/iriscouch/bigdecimal.js

var val1 = new BigDecimal(document.getElementById('id1').value);

var val2 = new BigDecimal(document.getElementById('id2').value);

var val3 = val1.add(val2);

The add method is working in Firefox but giving the following error on IE8.

Message: 'wrap_meth.inner_method' is null or not an object
Line: 582
Char: 9
Code: 0
URI: http://localhost:8080/AppName/js/bigdecimal.js

It's giving me the same error for other big decimal methods like compareTo and setScale.

How do I get around the error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人 2025-01-05 21:27:53

这个问题已经在github上提出来了。 https://github.com/iriscouch/bigdecimal.js/issues/2

为了方便贴在这里:

我也看到了这个问题。我能够通过更新 bigdecimal.js 中的以下行来解决它:

return wrap_meth.inner_method.apply(this, [args]);

至:

var m = wrap_meth.inner_method ? wrap_meth.inner_method : arguments.callee.inner_method;
return m.apply(this, [args]);

This issue has been brought up on github. https://github.com/iriscouch/bigdecimal.js/issues/2

Pasted here for convenience:

I also saw this issue. I was able to resolve it by updating the following line in bigdecimal.js:

return wrap_meth.inner_method.apply(this, [args]);

To:

var m = wrap_meth.inner_method ? wrap_meth.inner_method : arguments.callee.inner_method;
return m.apply(this, [args]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文