Rails console - 在表格中显示活动记录结果

发布于 2024-09-25 23:10:25 字数 47 浏览 1 评论 0原文

有没有办法在脚本/控制台环境中以表格格式显示 Active Record 结果?

Is there a way to display Active Record results in table format in the script/console environment?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空城之時有危險 2024-10-02 23:10:25

是的。有一个名为 hirb 的 gem 可以很好地做到这一点。

Yep. There's a gem called hirb that does this very well.

请爱~陌生人 2024-10-02 23:10:25

另请查看 http://tableprintgem.com。这是查看结构化数据列表的有效方法,可以轻松扫描和比较大量记录(对于许多人来说,这是对过去 SQL 命令行输出的舒适回归:)

table_print ruby​​ gem - 探索您的数据

table_print 最强大的功能是能够在与其相关的其他对象的上下文中查看数据。您可以使用访问嵌套对象所需的方法链来引用它们。此示例显示来自三个不同表的数据:

  • 来自 Author 表的 name(通过author.name 访问)
  • title 来自 Book 表(通过author.books.title 访问)
  • 照片表格中的标题(通过author.books.photos.caption获取)

table_print ruby​​ gem - contextualize你的数据

http://tableprintgem.com 有一个简短的介绍截屏视频

(全面披露:我写了这个 gem)

Also check out http://tableprintgem.com. It's an efficient way to view a list of structured data, making it easy to scan and compare across large swaths of records (and for many people, it's a comfortable return to the SQL command line output of yesteryear :)

table_print ruby gem - explore your data

The most powerful feature of table_print is the ability to see your data in the context of other objects it relates to. You can reference nested objects with the method chain required to reach them. This example is showing data from three different tables:

  • name from the Author table (reached through author.name)
  • title from the Book table (reached through author.books.title)
  • caption from the Photo table (reached through author.books.photos.caption)

table_print ruby gem - contextualize your data

There's a short intro screencast at http://tableprintgem.com

(full disclosure: I wrote this gem)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文