BigDecimal JavaScript 库错误 - “wrap_meth.inner_method”为 null 或不是对象
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题已经在github上提出来了。 https://github.com/iriscouch/bigdecimal.js/issues/2
为了方便贴在这里:
我也看到了这个问题。我能够通过更新 bigdecimal.js 中的以下行来解决它:
至:
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:
To: