快速查看 Rhino Shell 中的对象(相当于 PHP var_dump?)

发布于 2024-09-01 09:22:21 字数 177 浏览 8 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

日久见人心 2024-09-08 09:22:21

obj.toSource() 可以进行基本检查。

obj.toSource() will do for basic inspection.

偏爱你一生 2024-09-08 09:22:21

因为

obj.toSource() 

似乎有一种奇怪的情况,它没有显示,例如:

var v = [];
v['love'] = 'amore';    
print(v.toSource());

当你的原始代码(你可以将它包装成 dump() )有效时。

For

obj.toSource() 

there seems to be a strange case where it does not show, ex:

var v = [];
v['love'] = 'amore';    
print(v.toSource());

while your original code (you can wrap it int a dump() works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文