无需 Pry 即可在 Rails 控制台中查看模型中的内容

发布于 2024-12-13 07:08:34 字数 127 浏览 0 评论 0原文

我知道可以使用 Pry 来查看模型的组成部分,但是有没有一种方法可以在不使用 Pry 的情况下在 Rails 控制台中查看模型的各种属性?命令是什么?

我知道我可以查看迁移,但我宁愿尽可能留在命令行中。

谢谢

I know that one can use Pry to see what a model in composed of but is there a way to see the various attributes of a model in the Rails console without Pry? What is the command?

I know I can go looking at the migration but I'd rather stay in the command line where possible.

Thanks

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

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

发布评论

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

评论(1

提赋 2024-12-20 07:08:34

从脚本/控制台或 irb,您只需发出类的名称,它将返回属性。

例如,对于 Post 模型:

>> Post
=> Post(id: integer, title: string, body: text, created_at: datetime)

From script/console or irb you can just issue the name of the class and it will return the attributes.

For instance, with a Post model:

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