如何在 Mongo shell 中使用 SpiderMonkey 的调试支持?
MongoDB 的 shell 扩展了 SpiderMonkey。有没有办法连接到一些 SpiderMonkey 的调试支持?我一直无法找到一种方法来执行甚至简单的操作,例如激活 onerror() 处理程序以打印未处理异常的调用堆栈跟踪。
MongoDB's shell extends SpiderMonkey. Is there a way to hook into some of SpiderMonkey's debugging support? I haven't been able to find a way to do even simple things like activate an onerror() handler to print call stack traces on unhandled exceptions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前mongo的源使用spidermonkey 1.7,因此不支持调试API,因为它似乎是添加到1.8的。
将来 mongo 可能会升级到 SM1.8,如果您想请求功能,请在 jira.mongodb.org 上提交票证。
Currently mongo's sources use spidermonkey 1.7, so there is no support for debugging API since it was added to 1.8 it seems.
In the future mongo may get upgraded to SM1.8, please file a ticket on jira.mongodb.org if you'd like to request features.
根据 @cdleary 的观点,MongoDB 的 shell 似乎没有集成 SpiderMonkey 的调试支持。
Per @cdleary's point, it looks like MongoDB's shell has not integrated SpiderMonkey's debugging support.