Ruby / Ruby on Rails中是否有print_r或var_dump等效项?

时间:2009-05-24 17:59:23

标签: ruby-on-rails ruby

我正在寻找一种转储对象结构的方法,类似于PHP函数print_rvar_dump,这是出于调试原因。

10 个答案:

答案 0 :(得分:126)

任何对象的.inspect方法都应格式化以便显示,只需执行..

<%= theobject.inspect %>

.methods方法也可能有用:

<%= theobject.methods.inspect %>

根据数据

,将其放在<pre>标签中可能有所帮助

答案 1 :(得分:64)

观点:

include DebugHelper

...your code...

debug(object)

在控制器,模型和其他代码中:

puts YAML::dump(object)

Source

答案 2 :(得分:8)

在视图中,您可以使用<%= debug(yourobject) %>生成数据的YAML视图。如果您想在日志中添加某些内容,则应使用logger.debug yourobject.inspect

答案 3 :(得分:6)

你也可以在Rails控制台下使用 YAML :: dump 简写( y ):

>> y User.first
--- !ruby/object:User 
attributes: 
  created_at: 2009-05-24 20:16:11.099441
  updated_at: 2009-05-26 22:46:29.501245
  current_login_ip: 127.0.0.1
  id: "1"
  current_login_at: 2009-05-24 20:20:46.627254
  login_count: "1"
  last_login_ip: 
  last_login_at: 
  login: admin
attributes_cache: {}

=> nil
>> 

如果您只想预览某些字符串内容,请尝试使用 raise (例如在模型,控制器或其他一些无法访问的地方)。你可以免费获得回溯:)

>> raise Rails.root
RuntimeError: /home/marcin/work/github/project1
    from (irb):17
>> 

我也非常鼓励您尝试 ruby​​-debug

这非常有帮助!

答案 4 :(得分:5)

您可以使用puts some_variable.inspect。或者更短的版本:p some_variable。为了获得更漂亮的输出,您可以使用awesome_print gem

答案 5 :(得分:3)

如果您只想将相关数据显示到stdout(如果从命令行运行,则为终端输出),您可以使用p some_object

答案 6 :(得分:2)

前面的答案很棒但是如果你不想使用控制台(终端),在Rails中你可以使用调试助手ActionView::Helpers::DebugHelper

#app/view/controllers/post_controller.rb
def index
 @posts = Post.all
end

#app/view/posts/index.html.erb
<%= debug(@posts) %>

#start your server
rails -s

结果(在浏览器中)

- !ruby/object:Post
  raw_attributes:
    id: 2
    title: My Second Post
    body: Welcome!  This is another example post
    published_at: '2015-10-19 23:00:43.469520'
    created_at: '2015-10-20 00:00:43.470739'
    updated_at: '2015-10-20 00:00:43.470739'
  attributes: !ruby/object:ActiveRecord::AttributeSet
    attributes: !ruby/object:ActiveRecord::LazyAttributeHash
      types: &5
        id: &2 !ruby/object:ActiveRecord::Type::Integer
          precision: 
          scale: 
          limit: 
          range: !ruby/range
            begin: -2147483648
            end: 2147483648
            excl: true
        title: &3 !ruby/object:ActiveRecord::Type::String
          precision: 
          scale: 
          limit: 
        body: &4 !ruby/object:ActiveRecord::Type::Text
          precision: 
          scale: 
          limit: 
        published_at: !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter
          subtype: &1 !ruby/object:ActiveRecord::Type::DateTime
            precision: 
            scale: 
            limit: 
        created_at: !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter
          subtype: *1
        updated_at: !ruby/object:ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter
          subtype: *1

答案 7 :(得分:0)

我用这个:)

require 'yaml'

module AppHelpers
  module Debug
    module VarDump

      class << self

        def dump(dump_object, file_path)
          File.open file_path, "a+" do |log_file|
            current_date = Time.new.to_s + "\n" + YAML::dump(dump_object) + "\n"
            log_file.puts current_date
            log_file.close
          end
        end

      end

    end
  end
end

答案 8 :(得分:0)

最近我使用 awesome_print ap方法,该方法适用于控制台和视图。

如果您需要直观地扫描StringNumeric个对象,那么特定类型的彩色输出确实有所不同(虽然我不得不稍微调整一下样式表以获得精致的外观)

答案 9 :(得分:0)

最近,我成为了PRY的粉丝,我发现检查变量,调试运行代码和检查外部代码等事情令人难以置信。作为这个具体问题的答案,这可能有点矫枉过正。