有没有办法在 Rails 中一次检查所有控制器变量?

发布于 2024-09-01 11:32:16 字数 301 浏览 5 评论 0原文

我正在探索一个大型控制器方法,大约有 10 个左右的实例变量。其中一些是在 before_filter 方法中设置的,另一些是在方法本身中设置的。我想用 put 检查它们,但不想将它们全部写出示例:

puts "var1: #{@var1.inspect}....var15: #{@var15.inspect}"

是否有一个通用方法可以显示当前方法中到目前为止设置的所有带有 @ 符号的实例变量?如果不是,那么立即检查所有这些内容而不必将所有内容都写在 put 语句中的下一个最佳方法是什么?

I am exploring an big controller method, with about 10 or so instance variables. Some of them are set in before_filter methods, and some others inside the method itself. I want to inspect them with puts, but dont want to write all of them out example:

puts "var1: #{@var1.inspect}....var15: #{@var15.inspect}"

Is there a generic method that will display all the instance variables with an @ sign set so far in the current method? If not, what is the next best way to inspect all of them at once without having to write all of them in a puts statement?

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

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

发布评论

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

评论(2

绮烟 2024-09-08 11:32:16

您可以使用 instance_values 方法获取对象的所有实例变量作为哈希:

You can use instance_values method to get all instance variables for the object as a hash:

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