Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道可以使用 Pry 来查看模型的组成,但是有没有办法在没有 Pry 的情况下在 Rails 控制台中查看模型的各种属性?命令是什么?
我知道我可以查看迁移,但我宁愿尽可能留在命令行中。
谢谢
从脚本/控制台或 irb 你可以发出类的名称,它会返回属性。
例如,使用 Post 模型:
>> Post => Post(id: integer, title: string, body: text, created_at: datetime)