有没有办法在 Rails 中一次检查所有控制器变量?
我正在探索一个大型控制器方法,大约有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
instance_values
方法获取对象的所有实例变量作为哈希:You can use
instance_values
method to get all instance variables for the object as a hash:http://apidock.com/ruby/Object/instance_variables
http://apidock.com/ruby/Object/instance_variables