无需 Pry 即可在 Rails 控制台中查看模型中的内容
我知道可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从脚本/控制台或 irb,您只需发出类的名称,它将返回属性。
例如,对于 Post 模型:
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: