我想我正在尝试将PHP等效于print_r()
(打印人类可读);目前原始产量是:
ActiveRecord::Relation:0x10355d1c0
我该怎么办?
答案 0 :(得分:183)
我通常先尝试.inspect
,如果这不能满足我的需求,我会切换到.to_yaml
。
class User
attr_accessor :name, :age
end
user = User.new
user.name = "John Smith"
user.age = 30
puts user.inspect
#=> #<User:0x423270c @name="John Smith", @age=30>
puts user.to_yaml
#=> --- !ruby/object:User
#=> age: 30
#=> name: John Smith
希望有所帮助。
答案 1 :(得分:8)
在模型中定义to_s方法。例如
class Person < ActiveRecord::Base
def to_s
"Name:#{self.name} Age:#{self.age} Weight: #{self.weight}"
end
end
然后当你用#puts打印它时,它将显示带有这些变量的字符串。
答案 2 :(得分:5)
在Rails中,您可以使用调试&#39;在视图中打印结果。助手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
答案 3 :(得分:4)
答案 4 :(得分:2)
.inspect
是您正在寻找的,IMO比.to_yaml
更容易!
user = User.new
user.name = "will"
user.email = "will@example.com"
user.inspect
#<name: "will", email: "will@example.com">
答案 5 :(得分:1)
inspect
很棒但有时候还不够好。例如。 BigDecimal
打印如下:#<BigDecimal:7ff49f5478b0,'0.1E2',9(18)>
。
要完全控制打印内容,您可以重新定义to_s
或inspect
方法。或者创建自己的一个,以免过多混淆未来的开发者。
class Something < ApplicationRecord
def to_s
attributes.map{ |k, v| { k => v.to_s } }.inject(:merge)
end
end
这会将方法(即to_s
)应用于所有属性。这个例子将摆脱丑陋的BigDecimals
。
您也可以仅重新定义少数属性:
def to_s
attributes.merge({ my_attribute: my_attribute.to_s })
end
您还可以创建两个或Where can I find Android's default icons?添加关联的混合。
答案 6 :(得分:1)
pp也可以完成这项工作,不需要宝石。
@a = Accrual.first ; pp @a
#<Accrual:0x007ff521e5ba50
id: 4,
year: 2018,
Jan: #<BigDecimal:7ff521e58f08,'0.11E2',9(27)>,
Feb: #<BigDecimal:7ff521e585d0,'0.88E2',9(27)>,
Mar: #<BigDecimal:7ff521e58030,'0.0',9(27)>,
Apr: #<BigDecimal:7ff521e53698,'0.88E2',9(27)>,
May: #<BigDecimal:7ff521e52fb8,'0.8E1',9(27)>,
June: #<BigDecimal:7ff521e52900,'0.8E1',9(27)>,
July: #<BigDecimal:7ff521e51ff0,'0.8E1',9(27)>,
Aug: #<BigDecimal:7ff521e51bb8,'0.88E2',9(27)>,
Sep: #<BigDecimal:7ff521e512f8,'0.88E2',9(27)>,
Oct: #<BigDecimal:7ff521e506c8,'0.0',9(27)>,
Nov: #<BigDecimal:7ff521e43d38,'0.888E3',9(27)>,
Dec: #<BigDecimal:7ff521e43478,'0.0',9(27)>,
您还可以打印一个对象的两个实例:
pp( Accrual.first , Accrual.second)
`
`
`
答案 7 :(得分:-3)
您需要使用debug(@var)
。它就像“print_r”。