快速查看 Rhino Shell 中的对象(相当于 PHP var_dump?)
在 Rhino 中是否有比每次键入此命令更好的调试方法? :
for (prop in obj) { print("obj[" + prop + "] = " + obj[prop]); };
更新:要明确的是,我的问题是关于这个主题是否有任何现有的标准实践/模块/技巧。
Is there a better way of debugging in Rhino than typing this everytime? :
for (prop in obj) { print("obj[" + prop + "] = " + obj[prop]); };
Update: To be clear, my question is whether there are any existing standard practices/modules/tricks on this topic.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
obj.toSource()
可以进行基本检查。obj.toSource()
will do for basic inspection.因为
似乎有一种奇怪的情况,它没有显示,例如:
当你的原始代码(你可以将它包装成 dump() )有效时。
For
there seems to be a strange case where it does not show, ex:
while your original code (you can wrap it int a dump() works.