ฉันคิดว่าฉันกำลังพยายามทำให้ PHP เทียบเท่าprint_r()
(พิมพ์ที่มนุษย์อ่านได้); ในปัจจุบันผลลัพธ์ดิบคือ:
ActiveRecord::Relation:0x10355d1c0
ฉันควรทำอย่างไรดี?
ฉันคิดว่าฉันกำลังพยายามทำให้ PHP เทียบเท่าprint_r()
(พิมพ์ที่มนุษย์อ่านได้); ในปัจจุบันผลลัพธ์ดิบคือ:
ActiveRecord::Relation:0x10355d1c0
ฉันควรทำอย่างไรดี?
คำตอบ:
โดยทั่วไปแล้วฉันจะลองก่อน.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
หวังว่าจะช่วยได้
y record_name.attributes
ของการบันทึกฉันจะใช้ เป็นนามแฝงสำหรับ#y
to_yaml
กำหนดวิธีการ to_s ในโมเดลของคุณ ตัวอย่างเช่น
class Person < ActiveRecord::Base
def to_s
"Name:#{self.name} Age:#{self.age} Weight: #{self.weight}"
end
end
จากนั้นเมื่อคุณพิมพ์ด้วย #put มันจะแสดงสตริงนั้นพร้อมกับตัวแปรเหล่านั้น
puts my_model_instance
จะไม่โทรto_s
. คุณจะต้องทำอย่างชัดเจน:puts my_model_instance.to_s
ใน Rails คุณสามารถพิมพ์ผลลัพธ์ใน View โดยใช้ debug 'Helper 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
.inspect
คือสิ่งที่คุณกำลังมองหาเป็นวิธีที่ง่ายกว่า IMO .to_yaml
!
user = User.new
user.name = "will"
user.email = "will@example.com"
user.inspect
#<name: "will", email: "will@example.com">
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)
`
`
`
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
นอกจากนี้คุณยังสามารถสร้างผสมของทั้งสองหรืออย่างใดเพิ่มความสัมพันธ์
debug(@var)
คุณจำเป็นต้องใช้ มันเหมือนกับ "print_r" ทุกประการ