Stan Blog

學習過程中的一些記錄

[Rails] 幾個 Rails 內實用的小技巧

今天看到一篇文章,學到了幾個 Rails 實用小技巧

這邊只列出以前沒想到可以這樣用的幾個,原文附在最下方

1.在 Rails console 內,上次的結果會暫存在 _ 這個變數

在 console 內下 1 + 3 + 5 + 7(不指定給任何變數) 接著呼叫 _ 這個變數,會看到剛才的結果

螢幕快照 2021-06-15 17 55 30

2.找某個 model 可以使用的 methods

  • 找 Issue 的 instance methods Issue.methods

螢幕快照 2021-06-15 18 11 55

  • 找 Issue 的 class methods Issue.methods(false)

螢幕快照 2021-06-15 18 12 08

  • 找 Issue 的 instance methods(排除 ActiveRecord::Base methods) Issue.methods - ActiveRecord::Base.methods

螢幕快照 2021-06-15 18 12 20

  • 找 Issue 的 class methods(排除 ActiveRecord::Base methods) Issue.methods(false) - ActiveRecord::Base.methods

螢幕快照 2021-06-15 18 12 29


Ref:

Comments

comments powered by Disqus