42

rails 控制台输出如下所示:

User.all
=> [#<User id: 1, name: "Michael Hartl", email: "mhartl@example.com",
created_at: "2011-12-05 00:57:46", updated_at: "2011-12-05 00:57:46">,
#<User id: 2, name: "A Nother", email: "another@example.org", created_at:
"2011-12-05 01:05:24", updated_at: "2011-12-05 01:05:24">]

我想知道是否有命令可以使它更容易阅读?例如,在 MongoDB 控制台中有一个.pretty命令,它对输出进行格式化,对眼睛更友好一些。但不确定 Rails 中是否有类似的东西。

4

8 回答 8

72

A bit more elegant shorthand:

y User.all
于 2014-03-19T08:48:16.047 回答
38

我一直在使用pp。pp 代表“漂亮的印刷品”。不需要宝石。

在 Rails 控制台上尝试这样做:

pp User.all

如果您简单地执行 User.all,您将在记录中连续显示每个属性及其值,而不是它们的捆绑。

这是文档:

https://ruby-doc.org/stdlib-2.1.0/libdoc/pp/rdoc/PP.html

我正在使用 Rails 5.1.3 和 ruby​​ 2.4.1p111,它已经安装在我的项目中。如果这不起作用,我想你必须这样做require 'pp'。我希望这有帮助。

于 2017-09-19T18:32:24.013 回答
30

如果您不想使用 gem,这里是低价版本:

 puts User.all.to_yaml
于 2013-01-16T22:32:44.947 回答
11

你也可以使用这个令人难以置信的宝石:

很棒的印刷品

于 2013-01-16T21:55:34.763 回答
6

你可以试试 awesome_print gem: https ://github.com/michaeldv/awesome_print

安装后,您可以使用以下命令打印任何对象:

ap User.all
于 2013-01-16T21:34:05.860 回答
5

这里有几个选项

yaml 格式

y your_code

真棒打印

gem install awesome_print

然后在 irb 或 pry

require 'awesome_print'
ap your_code
于 2016-02-18T17:35:01.803 回答
5

利用pry

不撬:

2.3.1 :001 > SupplierTerm.first
  SupplierTerm Load (39.4ms)  SELECT  "supplier_terms".* FROM "supplier_terms" ORDER BY "supplier_terms"."id" ASC LIMIT $1  [["LIMIT", 1]]
 => #<SupplierTerm id: "1bc48081-402a-41d9-b6af-d783c28bb363", 
entity_id: "927b398f-2bbd-40cb-b668-eb284e26688d", uses_custom_terms: 
false, requires_credit_check: false, requires_identity_check: false, 
requires_guarantees: true, requires_trade_reference_check: true, 
minimum_guarantees: 1, minimum_trade_references: 1, trade_account_limit: 
20000, created_at: "2017-02-01 22:11:49", updated_at: "2017-02-01 
22:11:49", created_by_id: "2c314f8a-6d84-48c8-a963-75130e97f1a6", 
updated_by_id: "2c314f8a-6d84-48c8-a963-75130e97f1a6", questions: [], 
minimum_approvers: 1, excluded_sources: nil> 

用撬:

2.3.1 :002 > pry
[1] pry(main)> SupplierTerm.first
  SupplierTerm Load (0.4ms)  SELECT  "supplier_terms".* FROM "supplier_terms" ORDER BY "supplier_terms"."id" ASC LIMIT $1  [["LIMIT", 1]]
=> #<SupplierTerm:0x007fb4e1feff40
 id: "1bc48081-402a-41d9-b6af-d783c28bb363",
 entity_id: "927b398f-2bbd-40cb-b668-eb284e26688d",
 uses_custom_terms: false,
 requires_credit_check: false,
 requires_identity_check: false,
 requires_guarantees: true,
 requires_trade_reference_check: true,
 minimum_guarantees: 1,
 minimum_trade_references: 1,
 trade_account_limit: 20000,
 created_at: Wed, 01 Feb 2017 22:11:49 UTC +00:00,
 updated_at: Wed, 01 Feb 2017 22:11:49 UTC +00:00,
 created_by_id: "2c314f8a-6d84-48c8-a963-75130e97f1a6",
 updated_by_id: "2c314f8a-6d84-48c8-a963-75130e97f1a6",
 questions: [],
 minimum_approvers: 1,
 excluded_sources: nil>
于 2017-05-18T02:52:40.713 回答
2

有一种很棒的宝石叫做Jazz Hands。在 rails 控制台中包括基于 pry 的增强功能、hirb 和 awesome_print。

PS 你可能想使用 fork Jazz Fingers使其与 Ruby 2.1.2 兼容

于 2015-04-19T18:02:59.037 回答